Skip to content

Commit

Permalink
update reflector
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Sep 30, 2024
1 parent a632e42 commit af55c57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ reports
libsci.build_artifacts.txt
src/scratch.clj
src/scratch.cljs
.lein-failures
3 changes: 2 additions & 1 deletion reflector/src-java8/sci/impl/Reflector.java
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ private static Object[] widenBoxedArgs(Object[] args) {
return widenedArgs;
}

static Object invokeMatchingMethod(String methodName, List methods, Object target, Object[] args){
/* PATCH: made public */
public static Object invokeMatchingMethod(String methodName, List methods, Object target, Object[] args){
return invokeMatchingMethod(methodName, methods, target != null ? target.getClass() : null, target, args);
}

Expand Down

0 comments on commit af55c57

Please sign in to comment.