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/TargetControl.java |   13 ++++---------
 1 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetControl.java b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetControl.java
index 1aade2b..e5bcc23 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetControl.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/TargetControl.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2008 Sun Microsystems, Inc.
- *      Portions Copyright 2013 ForgeRock AS
+ *      Portions Copyright 2013-2015 ForgeRock AS
  */
 package org.opends.server.authorization.dseecompat;
 
@@ -36,14 +36,9 @@
  */
 public class TargetControl {
 
-  /**
-   * HashSet of OID strings parsed from the decode.
-   */
-  private Set<String> controlOIDS = new HashSet<String>();
-
-  /**
-   * Enumeration representing the targetcontrol operator.
-   */
+  /** HashSet of OID strings parsed from the decode. */
+  private Set<String> controlOIDS = new HashSet<>();
+  /** Enumeration representing the targetcontrol operator. */
   private EnumTargetOperator op = EnumTargetOperator.EQUALITY;
 
   /**

--
Gitblit v1.10.0