Skip to content

Commit

Permalink
remove unused log
Browse files Browse the repository at this point in the history
  • Loading branch information
yoloyyh committed Oct 11, 2024
1 parent edea6c5 commit a30a24f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,12 +383,12 @@ private boolean isBypassHookClass(String className) {
}

public boolean isFunctionEnabled(int classId, int methodId) {
String key = classId + "-" + methodId;
Set<String> types = hookTypes.get(key);


if (switchConfig == null || switchConfig.isEmpty()) {
return true;
}
String key = classId + "-" + methodId;
Set<String> types = hookTypes.get(key);

if (types != null) {
for (String type : types) {
Expand Down

0 comments on commit a30a24f

Please sign in to comment.