Skip to content

Commit

Permalink
work as blacklist by default
Browse files Browse the repository at this point in the history
  • Loading branch information
chickenlj committed Jul 7, 2020
1 parent ae09056 commit c30837c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ private boolean isAllow(String className)
}
}

return false;
if (_isWhitelist) {
return false;
}

return true;
}

public void setWhitelist(boolean isWhitelist)
Expand Down

0 comments on commit c30837c

Please sign in to comment.