Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
getTypeName() in JSRVariableScopeCodeVisitor doesn't handle String[], which means you can't override a method where the base class method expects a String array. The fix is easy - just add another "else if" around line 415 something like:
else if (name.equals("java.lang.String")) {
return prefix + "L";
}