Skip to content

Commit c9473d9

Browse files
committed
CLEANUP: refactored simply a code.
1 parent e506e88 commit c9473d9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/net/spy/memcached/protocol/ascii/BaseGetOpImpl.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ public final void handleRead(ByteBuffer b) {
136136
GetOperation.Callback gcb = (GetOperation.Callback) getCallback();
137137
gcb.gotData(currentKey, currentFlags, data);
138138
} catch (ClassCastException e) {
139-
GetsOperation.Callback gcb = (GetsOperation.Callback)
140-
getCallback();
139+
GetsOperation.Callback gcb = (GetsOperation.Callback) getCallback();
141140
gcb.gotData(currentKey, currentFlags, casValue, data);
142141
}
143142
lookingFor = '\r';

0 commit comments

Comments
 (0)