From a89f7014aeb71dba5c94404dfea7eb89e7eeee74 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 08 Jul 2015 06:48:02 +0000
Subject: [PATCH] AutoRefactor'ed Use Diamond Operator

---
 opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/LDAPUpdateMsg.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/LDAPUpdateMsg.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/LDAPUpdateMsg.java
index 6e5289a..52b5063 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/LDAPUpdateMsg.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/LDAPUpdateMsg.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2009 Sun Microsystems, Inc.
- *      Portions Copyright 2011-2014 ForgeRock AS
+ *      Portions Copyright 2011-2015 ForgeRock AS
  */
 package org.opends.server.replication.protocol;
 
@@ -436,7 +436,7 @@
   ArrayList<RawAttribute> decodeRawAttributes(byte[] in)
   throws LDAPException, DecodeException
   {
-    ArrayList<RawAttribute> rattr = new ArrayList<RawAttribute>();
+    ArrayList<RawAttribute> rattr = new ArrayList<>();
     try
     {
       ByteSequenceReader reader =
@@ -465,7 +465,7 @@
   ArrayList<Attribute> decodeAttributes(byte[] in)
   throws LDAPException, DecodeException
   {
-    ArrayList<Attribute> lattr = new ArrayList<Attribute>();
+    ArrayList<Attribute> lattr = new ArrayList<>();
     try
     {
       ByteSequenceReader reader =

--
Gitblit v1.10.0