save paths outside $PROJECT_DIR$ as absolute rubymine/112.455
authorpeter <peter@jetbrains.com>
Tue, 17 Jan 2012 12:36:01 +0000 (13:36 +0100)
committerpeter <peter@jetbrains.com>
Tue, 17 Jan 2012 12:41:20 +0000 (13:41 +0100)
platform/platform-impl/src/com/intellij/openapi/components/impl/BasePathMacroManager.java

index d29b0c7b035a1eb76bd057f7892241770a3a6206..929bd5c52f993cb254b7987d921065bba93af3bd 100644 (file)
@@ -62,7 +62,7 @@ public class BasePathMacroManager extends PathMacroManager {
         putIfAbsent(result, path, s, check);
       }
 
-      if (dir.getPath().equals(stopAt)) {
+      if (stopAt == null || dir.getPath().equals(stopAt)) {
         break;
       }