debugging PathMacroManagerTest

This commit is contained in:
peter
2012-06-29 16:36:39 +02:00
parent 4e7264c05b
commit 411a0478b0
@@ -66,12 +66,16 @@ public class BasePathMacroManager extends PathMacroManager {
if (path == null) return;
String macro = "$" + macroName + "$";
if (DEBUG) {
System.out.println("BasePathMacroManager.addFileHierarchyReplacements");
System.out.println("macroName = " + macroName);
}
VirtualFile dir = getLocalFileSystem().findFileByPath(path);
boolean check = false;
while (dir != null && dir.getParent() != null) {
path = dir.getPath();
if (DEBUG) {
System.out.println("BasePathMacroManager.addFileHierarchyReplacements");
System.out.println("dir = " + dir);
System.out.println("path = " + path);
System.out.println("macro = " + macro);
}