Skip to content

Commit

Permalink
fixed a wrong reference for codec provider in Redisson
Browse files Browse the repository at this point in the history
  • Loading branch information
jackygurui committed Jun 13, 2016
1 parent f7ecddc commit 5fd2ba5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/redisson/Redisson.java
Expand Up @@ -556,8 +556,8 @@ public RLiveObjectService getLiveObjectService() {
} }


@Override @Override
public RLiveObjectService getLiveObjectService(CodecProvider ProviderCodec) { public RLiveObjectService getLiveObjectService(CodecProvider codecProvider) {
return new RedissonLiveObjectService(this, liveObjectClassCache, new DefaultCodecProvider()); return new RedissonLiveObjectService(this, liveObjectClassCache, codecProvider);
} }


@Override @Override
Expand Down

0 comments on commit 5fd2ba5

Please sign in to comment.