Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
sjokim committed Sep 18, 2015
1 parent 48792ff commit 9d7f882
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scouter.agent.java/src/scouter/agent/asm/util/MethodSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ public static void add(List<MethodSet> list, String classname, String method, by
public static HashSet<String> getHookingClassSet(String arg) {
String[] c = StringUtil.tokenizer(arg, ",");
HashSet<String> classSet = new HashSet<String>();
if(c ==null)
return classSet;
for (int i = 0; i < c.length; i++) {
classSet.add(c[i]);
}
Expand Down

0 comments on commit 9d7f882

Please sign in to comment.