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/controls/LDAPPostReadRequestControl.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/controls/LDAPPostReadRequestControl.java b/opendj-server-legacy/src/main/java/org/opends/server/controls/LDAPPostReadRequestControl.java
index 67fcead..7b93ba2 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/controls/LDAPPostReadRequestControl.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/controls/LDAPPostReadRequestControl.java
@@ -73,7 +73,7 @@
}
ASN1Reader reader = ASN1.getReader(value);
- LinkedHashSet<String> rawAttributes = new LinkedHashSet<String>();
+ LinkedHashSet<String> rawAttributes = new LinkedHashSet<>();
try
{
reader.readStartSequence();
@@ -138,7 +138,7 @@
super(OID_LDAP_READENTRY_POSTREAD, isCritical);
if (rawAttributes == null)
{
- this.rawAttributes = new LinkedHashSet<String>(0);
+ this.rawAttributes = new LinkedHashSet<>(0);
}
else
{
@@ -168,7 +168,7 @@
super(oid, isCritical);
if (rawAttributes == null)
{
- this.rawAttributes = new LinkedHashSet<String>(0);
+ this.rawAttributes = new LinkedHashSet<>(0);
}
else
{
--
Gitblit v1.10.0