Skip to content

Commit

Permalink
Update documentation #41
Browse files Browse the repository at this point in the history
  • Loading branch information
rfscholte committed Oct 12, 2022
1 parent 10b68f5 commit 2a18b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ JavaType nType = n.getType(); // "int";
JavaParameter o = m.getParameters()[1];
String oName = o.getName(); // "objects"
JavaType oType = o.getType(); // "java.lang.Object";
boolean oArray = o.getType().isArray(); // true
boolean oArray = o.getJavaClass().isArray(); // true

JavaMethod javaMethod = o.getParentMethod();
```
Expand Down

0 comments on commit 2a18b48

Please sign in to comment.