Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Belle2019-03-17 23:13:12 +0000
committerJan Belle2019-03-17 23:13:12 +0000
commita8e38936ea03eeb490195d93935797e3f13e6bef (patch)
tree6db96c0739401385e98af5beb048d0cee2e5389a /plugins
parent8630ea7d03621aecf200cb5e51480475c2ae40c8 (diff)
downloadorg.eclipse.etrice-a8e38936ea03eeb490195d93935797e3f13e6bef.tar.gz
org.eclipse.etrice-a8e38936ea03eeb490195d93935797e3f13e6bef.tar.xz
org.eclipse.etrice-a8e38936ea03eeb490195d93935797e3f13e6bef.zip
[common.ui] Change convention of modelpath definition file name
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.etrice.core.common.ui/src/org/eclipse/etrice/core/common/ui/modelpath/ModelPathManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.etrice.core.common.ui/src/org/eclipse/etrice/core/common/ui/modelpath/ModelPathManager.java b/plugins/org.eclipse.etrice.core.common.ui/src/org/eclipse/etrice/core/common/ui/modelpath/ModelPathManager.java
index 590bd32b0..c46d5b2da 100644
--- a/plugins/org.eclipse.etrice.core.common.ui/src/org/eclipse/etrice/core/common/ui/modelpath/ModelPathManager.java
+++ b/plugins/org.eclipse.etrice.core.common.ui/src/org/eclipse/etrice/core/common/ui/modelpath/ModelPathManager.java
@@ -46,7 +46,7 @@ public class ModelPathManager implements IResourceChangeListener {
public static final ModelPathManager INSTANCE = new ModelPathManager();
- public static final Path MODELPATH_FILE = new Path(".modelpath");
+ public static final Path MODELPATH_FILE = new Path("modelpath");
private HashMap<IProject, ModelPathDescription> descriptionCache;
private HashMap<IProject, WorkspaceModelPath> modelpathCache;

Back to the top