From 90a6ab6c63699343acf3adcd4346bce2f5665bdd Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 07 Jul 2015 15:12:28 +0000
Subject: [PATCH] AutoRefactor'ed Use Diamond Operator

---
 opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetAttr.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetAttr.java b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetAttr.java
index b6324b0..444bb23 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetAttr.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetAttr.java
@@ -48,9 +48,9 @@
     /** Flags that is set if all operational attributes pattern seen "+". */
     private boolean allOpAttributes;
     /** Set of the attribute types parsed by the constructor. */
-    private HashSet<AttributeType> attributes = new HashSet<AttributeType>();
+    private HashSet<AttributeType> attributes = new HashSet<>();
     /** Set of the operational attribute types parsed by the constructor. */
-    private HashSet<AttributeType> opAttributes = new HashSet<AttributeType>();
+    private HashSet<AttributeType> opAttributes = new HashSet<>();
 
     /**
      * Regular expression that matches one or more ATTR_NAME's separated by

--
Gitblit v1.10.0