Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.8.5, 2.0-beta-2
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
The JavaStubGenerator incorrectly handles generics signatures of the form:
java.util.List<? extends T>
instead producing
java.util.List<? extends java.lang.Object<T>>
which doesn't compile as java.lang.Object does not take parameters.
This has been fixed - not with an ideal solution but hopefully good enough until some other underlying refactoring is done.