Skip to content

Commit

Permalink
Fixing the build
Browse files Browse the repository at this point in the history
  • Loading branch information
ayende committed Oct 9, 2011
1 parent f835d9f commit 93bf4af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class VersioningWithGuidIds : VersioningTest
[Fact]
public void Loading_versioned_entity_with_guid_id_will_fail()
{
documentStore.Conventions.FindIdValuePartForValueTypeConvertion = (entity, id) =>
documentStore.Conventions.FindIdValuePartForValueTypeConversion = (entity, id) =>
{
var parts = id.Split('/');
var guid = parts[1];
Expand Down
2 changes: 1 addition & 1 deletion Raven.Client.Lightweight/Shard/ShardedDocumentSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ public void Store(object entity)
GetSingleShardSession(shardId).Store(entity);
}

public void Store(dynamic entity, string id)
public void Store(object entity, string id)
{
// We don't care about this feature now, being we're rewriting this anyhow
throw new NotImplementedException();
Expand Down

0 comments on commit 93bf4af

Please sign in to comment.