Skip to content

Commit

Permalink
fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
patduin committed Feb 8, 2024
1 parent cfcb1bc commit 1d02536
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Object invoke(Object proxy, Method method, Object[] args) throws Throwabl
return result;
default:
if (method.getName().startsWith("get")) {
doRealCall(readOnly, method, args);
return doRealCall(readOnly, method, args);
}
return doRealCall(readWrite, method, args);
}
Expand Down

0 comments on commit 1d02536

Please sign in to comment.