Skip to content

Commit

Permalink
CLEANUP: refactored simply a code.
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpark816 committed Dec 2, 2024
1 parent e506e88 commit c9473d9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ public final void handleRead(ByteBuffer b) {
GetOperation.Callback gcb = (GetOperation.Callback) getCallback();
gcb.gotData(currentKey, currentFlags, data);
} catch (ClassCastException e) {
GetsOperation.Callback gcb = (GetsOperation.Callback)
getCallback();
GetsOperation.Callback gcb = (GetsOperation.Callback) getCallback();
gcb.gotData(currentKey, currentFlags, casValue, data);
}
lookingFor = '\r';
Expand Down

0 comments on commit c9473d9

Please sign in to comment.