Skip to content

Commit

Permalink
Removed unused result variable from Set operation
Browse files Browse the repository at this point in the history
  • Loading branch information
jzablocki committed Aug 1, 2012
1 parent e056aa5 commit cf8a591
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -49,7 +49,7 @@ public override void Remove(string key)

public override void Set(string key, object entry, DateTime utcExpiry)
{
var result = _client.Store(StoreMode.Set, key, entry, utcExpiry);
_client.Store(StoreMode.Set, key, entry, utcExpiry);
}
}
}
Expand Down

0 comments on commit cf8a591

Please sign in to comment.