Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
None
-
Operating System: other
Platform: Other
-
38284
Description
Although convention says we shouldn't put capitals in package names, this is not
something that is enforced by the JVM and some users may do this. I don't think
it should be jci enforcing that naming convention.
See line 229 of EclipseJavaCompiler.
if (Character.isUpperCase(packageName[0])) {
return false;
}