Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.5.0-beta-1
-
None
-
None
Description
This works:
@AutoImplement class MyClass implements Comparator {}
but this doesn't:
@AutoImplement class MyClass implements Comparator<String> {}
The parameters aren't equal inside AutoImplementASTTransformation#getDeclaredMethodCorrected after correcting for generics (String vs Object).
However Iterator<String> is fine.