Skip to content

Commit

Permalink
Merge pull request #45 from ieven/lichong
Browse files Browse the repository at this point in the history
fix can not access a member of class
  • Loading branch information
uavstack authored Oct 26, 2017
2 parents 7c1957b + 80a026a commit 3d48c8a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public Object invoke(Object proxy, Method method, Object[] args) throws Throwabl
}

try {
method.setAccessible(true);
res = method.invoke(this.target, args);
}
catch (InvocationTargetException e) {
Expand Down

0 comments on commit 3d48c8a

Please sign in to comment.