diff --git a/build.txt b/build.txt index 6f540e14d3a6..6cafa4358b0d 100644 --- a/build.txt +++ b/build.txt @@ -1 +1 @@ -146.SNAPSHOT +162.SNAPSHOT diff --git a/platform/platform-resources-en/src/messages/ActionsBundle.properties b/platform/platform-resources-en/src/messages/ActionsBundle.properties index 686ab725b0d6..c1bd8b7280ae 100644 --- a/platform/platform-resources-en/src/messages/ActionsBundle.properties +++ b/platform/platform-resources-en/src/messages/ActionsBundle.properties @@ -1456,7 +1456,7 @@ action.UnmarkRoot.text=Unmark Root action.CreateLibraryFromFile.text=Add as Library... action.ImportModuleFromImlFile.text=Import Module action.ImportModuleFromImlFile.description=Import iml file as a module to the project -group.MarkRootGroup.text=Mark Directory As +group.MarkRootGroup.text=Mark Directory as action.CreateLauncherScript.text=Create Command-line Launcher... action.CreateLauncherScript.description=Create a script for opening files and projects from the command line action.CreateDesktopEntry.text=Create Desktop Entry... @@ -1467,7 +1467,7 @@ action.EditorGutterToggleLocalSoftWraps.gutterText=Soft-Wrap Current File action.EditorGutterToggleGlobalLineNumbers.text=Show Line Numbers action.EditorGutterToggleGlobalIndentLines.text=Show Indent Guides action.ExcludeFromProject.text=Exclude From Project... -group.MarkFileAs.text=Mark File As +group.MarkFileAs.text=Mark File as action.MarkAsPlainTextAction.text=Mark as Plain Text action.MarkAsOriginalTypeAction.text=Mark as diff --git a/platform/projectModel-impl/src/com/intellij/openapi/roots/impl/RootIndex.java b/platform/projectModel-impl/src/com/intellij/openapi/roots/impl/RootIndex.java index b1cf97108d28..649ac03176d2 100644 --- a/platform/projectModel-impl/src/com/intellij/openapi/roots/impl/RootIndex.java +++ b/platform/projectModel-impl/src/com/intellij/openapi/roots/impl/RootIndex.java @@ -249,7 +249,7 @@ public class RootIndex { final Module depModule = moduleOrderEntry.getModule(); if (depModule != null) { Node node = graph.myNodes.get(depModule); - OrderEnumerator en = OrderEnumerator.orderEntries(depModule).exportedOnly().recursively(); + OrderEnumerator en = OrderEnumerator.orderEntries(depModule).exportedOnly(); if (node == null) { node = new Node(); node.myKey = depModule; @@ -265,7 +265,7 @@ public class RootIndex { roots.putValue(sourceRoot, node); } } - boolean shouldRecurse = en.shouldRecurse(moduleOrderEntry, handlers); + boolean shouldRecurse = en.recursively().shouldRecurse(moduleOrderEntry, handlers); node.myEdges.add(new Edge(module, moduleOrderEntry, shouldRecurse)); } }