Merge remote-tracking branch 'origin/master'

This commit is contained in:
Vladimir.Orlov
2016-05-06 13:10:49 +03:00
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1 +1 @@
146.SNAPSHOT
162.SNAPSHOT
@@ -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
@@ -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));
}
}