Skip to content

Commit

Permalink
#112: Add package support to the ObfuscationRequired rule
Browse files Browse the repository at this point in the history
Fixed #112
  • Loading branch information
dgroup committed Feb 14, 2022
1 parent 6d647ec commit a1fa589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public Object visit(final ASTVariableDeclaratorId vardecl, final Object data) {
*/
private boolean isLogger(final ASTType type) {
final boolean matches;
if (type != null) {
if (type == null) {
matches = false;
} else {
matches = this.getProperty(LOGGERS)
Expand Down

0 comments on commit a1fa589

Please sign in to comment.