Skip to content

Commit

Permalink
fix(kit): #407 ClassRefInfoKit invokeSetter
Browse files Browse the repository at this point in the history
  • Loading branch information
iohao committed Dec 2, 2024
1 parent c7ff855 commit 0072791
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public <T> T invokeGetter(Object object, String filedName) {
public ClassRefInfo invokeSetter(Object object, String filedName, Object value) {
FieldRefInfo filedRefInfo = filedRefInfoMap.get(filedName);

String methodName = filedRefInfo.getMethodGetName();
String methodName = filedRefInfo.getMethodSetName();
MethodRefInfo methodRefInfo = getMethodRefInfo(methodName);

methodRefInfo.invokeMethod(object, value);
Expand Down

0 comments on commit 0072791

Please sign in to comment.