Browse Source
'assert' is a reserved keyword in Java and indeed also in module-info.java (Java module system), therefore the automatic jar-to-module convert fails and when using the library with a Java module, the compiler can not find the classes, as the module name errors. This added the standardized attribute in the manifest for naming the module, and does not modularize the code as such. It does allow the library to be used from Java 9+ modules. There should be no effect on Java 8 and below.pull/602/head
3 changed files with 4 additions and 3 deletions
Loading…
Reference in new issue