|
@@ -141,6 +141,13 @@ public class Reverses {
|
|
|
+ " projectPath -> " + projectPath + ", e.getMessage() -> " + e.getMessage());
|
|
+ " projectPath -> " + projectPath + ", e.getMessage() -> " + e.getMessage());
|
|
|
return classfileBuffer;
|
|
return classfileBuffer;
|
|
|
}
|
|
}
|
|
|
|
|
+ // 自动去掉嵌套路径前'nested:/',后'/'
|
|
|
|
|
+ if (projectPath != null && projectPath.startsWith(Constant.NESTED_PREFIX)) {
|
|
|
|
|
+ projectPath = projectPath.substring(Constant.NESTED_PREFIX.length());
|
|
|
|
|
+ if (projectPath.endsWith(Constant.LINUX_FILE_SEPARATOR)) {
|
|
|
|
|
+ projectPath = projectPath.substring(0, projectPath.length() - 1);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
if (!projectPathSet.contains(projectPath)) {
|
|
if (!projectPathSet.contains(projectPath)) {
|
|
|
Logger.debug(Reverses.class, "Exist projectPath -> " + projectPath);
|
|
Logger.debug(Reverses.class, "Exist projectPath -> " + projectPath);
|
|
|
projectPathSet.add(projectPath);
|
|
projectPathSet.add(projectPath);
|