-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
refactor: address IntelliJ QAPlug plugin findings #114
base: develop
Are you sure you want to change the base?
Conversation
* make final fields static * remove unnecessary local before return * remove instanceof checks in catch clause * avoid throwing java.lang.Exception * remove null checks covered by instanceof check * remove toString on String objects * remove overrides that only call their super * remove unused private methods * remove unnecessary if statement nesting * remove unused local variables * use try-with-resources to close resources after use * use equals() to compare object references * fix broken javadoc references * fix disallowed self-closing and empty javadoc elements * fix bad use of symbols in javadoc * fix disallowed list item tag in javadoc without surrounding list * fix erroneous javadoc tags * fix emphasize tags in javadoc * remove illegal throws * remove unused imports Related: Terasology/CoreRendering#75 Terasology/Furnishings#17 Terasology/Health#105 Terasology/Inventory#51 Terasology/Behaviors#114 Terasology/CoreWorlds#45 Terasology/FlexiblePathfinding#32 Adds to #3859
i cannot follow this logic @jdrueckert - this is just reordering imports. no relation with test failures? and #115 itself has test failures. |
@soloturn The module is broken currently due to a change in the engine. As the modules don't define on which version of the engine they depend, and the CI always takes the latest available build of In this case, even If I understand @jdrueckert correctly, the proposal is to fix the build failure first (intented by #115) before merging anything else. |
Relates to MovingBlocks/Terasology#5149