We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The problem is present on the generated code for the method setParameter for an ControllerCreator:
@Override public void setParameter(Object object, String... parms) throws RoutingInterceptionException { PersonnelController controller = (PersonnelController) object; StringBuilder sb01 = new StringBuilder(); }
The controller and sb01 will not be used so don't need to be generated. This will cause the java compiler not emit a warning.
The text was updated successfully, but these errors were encountered:
#84 - Unused generated code is causing compiler warnings
43aee0f
Done
Sorry, something went wrong.
FrankHossfeld
No branches or pull requests
The problem is present on the generated code for the method setParameter for an ControllerCreator:
The controller and sb01 will not be used so don't need to be generated. This will cause the java compiler not emit a warning.
The text was updated successfully, but these errors were encountered: