Skip to content

Commit

Permalink
Merge pull request #12 from Kralizek/master
Browse files Browse the repository at this point in the history
#11 Fixed issue with SystemClock
  • Loading branch information
Kralizek committed Oct 22, 2015
2 parents e1936b7 + 228cc58 commit 45ea05d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Interfaces/Utils/IClock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ public interface IClock

public class SystemClock : IClock
{
public DateTimeOffset Now { get; } = DateTimeOffset.Now;
public DateTimeOffset Now => DateTimeOffset.Now;
}
}

0 comments on commit 45ea05d

Please sign in to comment.