Changes between Version 167 and Version 168 of j2p
- Timestamp:
- 11/18/24 12:35:26 (7 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v167 v168 537 537 ||I get an error in python on an overloaded method ({{{@dispatch}}}), incorrect number of arguments.||{{{@dispatch}}} has a problem with Optional arguments. Try making the arguments {{{@NonNull}}} in java.|| 538 538 ||I get an UnsupportedOperationException inside javaparser LambdaExprContext||Javaparser seems to sometimes have trouble with resolving argument types inside lambda expressions. Try explicitly naming the left side of your lambda expression|| 539 ||I get {{{Method '...' cannot be resolved in context ...}}} from the javaparser||The javaparser has problems resolving the method when the provided argument does exactly not match the actual argument, eg when your method call uses an int while the actual method takes a long. Try changing your call so that the argument type is exactly matching the method type.||