Skip to content

Commit

Permalink
Fixing source analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
ajlopez committed Jul 14, 2015
1 parent f806d92 commit 7fb8812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/SharpMongo.Core/Collection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public int Compare(DynamicObject x, DynamicObject y)
for (int k = 0; k < this.size; k++)
{
string name = this.names[k];
int order =this.orders[k];
int order = this.orders[k];

object value1 = x.GetMember(name);
object value2 = y.GetMember(name);
Expand Down

0 comments on commit 7fb8812

Please sign in to comment.