Skip to content

Commit

Permalink
Fix method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed Dec 7, 2023
1 parent 255a2d0 commit 3c78cc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Aeon.Acquisition/Aeon.Acquisition.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageTags>Bonsai Rx Project Aeon Acquisition</PackageTags>
<TargetFramework>net472</TargetFramework>
<VersionPrefix>0.5.0</VersionPrefix>
<VersionSuffix>build231202</VersionSuffix>
<VersionSuffix>build231203</VersionSuffix>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Aeon.Acquisition/GetDateTime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static DateTime FromSeconds(double seconds)
return GroupByTime.ReferenceTime.AddSeconds(seconds);
}

public static IObservable<DateTime> Process(IObservable<double> source)
public IObservable<DateTime> Process(IObservable<double> source)
{
return source.Select(FromSeconds);
}
Expand Down

0 comments on commit 3c78cc0

Please sign in to comment.