Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.version.svn/src/org/eclipse/osee/ote/version/svn/ScriptToProject.java')
-rw-r--r--plugins/org.eclipse.osee.ote.version.svn/src/org/eclipse/osee/ote/version/svn/ScriptToProject.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ote.version.svn/src/org/eclipse/osee/ote/version/svn/ScriptToProject.java b/plugins/org.eclipse.osee.ote.version.svn/src/org/eclipse/osee/ote/version/svn/ScriptToProject.java
index 8fc58cb58d8..cc7cc8d7013 100644
--- a/plugins/org.eclipse.osee.ote.version.svn/src/org/eclipse/osee/ote/version/svn/ScriptToProject.java
+++ b/plugins/org.eclipse.osee.ote.version.svn/src/org/eclipse/osee/ote/version/svn/ScriptToProject.java
@@ -16,8 +16,8 @@ import org.eclipse.team.svn.core.utility.SVNUtility;
public class ScriptToProject {
- private final Map<String, Set<String>> projectsScriptsMap = new HashMap<String, Set<String>>();
- private final Map<String, File> scriptNameToScriptFileMap = new HashMap<String, File>();
+ private final Map<String, Set<String>> projectsScriptsMap = new HashMap<>();
+ private final Map<String, File> scriptNameToScriptFileMap = new HashMap<>();
private final IProject[] workspaceProjects;
public ScriptToProject(IProject[] workspaceProjects) {
@@ -52,7 +52,7 @@ public class ScriptToProject {
public void addScriptListValue(String key, String value) {
Set<String> values = projectsScriptsMap.get(key);
if (values == null) {
- values = new HashSet<String>();
+ values = new HashSet<>();
projectsScriptsMap.put(key, values);
}
values.add(value);

Back to the top