Skip to content

Commit

Permalink
Part 1 (fix) Remove nameof operator
Browse files Browse the repository at this point in the history
  • Loading branch information
nam178 committed Aug 29, 2015
1 parent af29b39 commit 18f9808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FooCore/RecordStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class RecordStorage : IRecordStorage
public RecordStorage (IBlockStorage storage)
{
if (storage == null)
throw new ArgumentNullException (nameof(storage));
throw new ArgumentNullException ("storage");
this.storage = storage;
}

Expand Down

0 comments on commit 18f9808

Please sign in to comment.