Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/SecurityTest.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/SecurityTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/SecurityTest.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/SecurityTest.java
index 40fffbeb84..86e593219f 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/SecurityTest.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/SecurityTest.java
@@ -243,7 +243,7 @@ public class SecurityTest extends AbstractCDOTest
{
private static final long serialVersionUID = 1L;
- private final Map<String, CDORevisionImpl> resourceNodes = new HashMap<String, CDORevisionImpl>();
+ private final Map<String, CDORevisionImpl> resourceNodes = new HashMap<>();
private long lastID;
@@ -266,7 +266,7 @@ public class SecurityTest extends AbstractCDOTest
public CDORevisionImpl[] addResourceNode(String resourcePath, EClass type)
{
- List<CDORevisionImpl> result = new ArrayList<CDORevisionImpl>();
+ List<CDORevisionImpl> result = new ArrayList<>();
CDORevisionImpl revision = null;
EClass segmentType = RESOURCE;

Back to the top