Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix wrong indent
  • Loading branch information
flyerhzm committed Aug 17, 2012
1 parent dd21713 commit 08f9884
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/openfeint/memcached/Memcached.java
Expand Up @@ -307,9 +307,9 @@ protected IRubyObject init(ThreadContext context, List<String> servers, RubyHash
client = new MemcachedClient(builder.build(), addresses);

if ("marshal_zlib".equals(transcoderValue)) {
transcoder = new MarshalZlibTranscoder(ruby);
transcoder = new MarshalZlibTranscoder(ruby);
} else {
transcoder = new MarshalTranscoder(ruby);
transcoder = new MarshalTranscoder(ruby);
}
} catch (IOException ioe) {
throw ruby.newIOErrorFromException(ioe);
Expand Down

0 comments on commit 08f9884

Please sign in to comment.