Package info files are supposed to have annotations above the package line, and then imports, and then the file ends. However, the decompiled java files instead have the annotations above an interface package-info {} line, which does not compile anyway due to the package part of the interface's name being recognized as a keyword. Below is an example of what I mean.
Package info files are supposed to have annotations above the package line, and then imports, and then the file ends. However, the decompiled java files instead have the annotations above an
interface package-info {}
line, which does not compile anyway due to thepackage
part of the interface's name being recognized as a keyword. Below is an example of what I mean.Expected:
Got: