From fadc30b0be7a0bd75839f1dd859eadfc1cfe24f0 Mon Sep 17 00:00:00 2001 From: Driptaroop Das Date: Tue, 8 Jan 2019 15:27:20 +0530 Subject: [PATCH] DatabaseClass-replaced type with diamonds DatabaseClass.java - Replace the type specification in this constructor call with the diamond operator ("<>"). Issue-ID: DMAAP-947 Change-Id: Ia40caaa7738265b80f941366fcb85583fa8a498f Signed-off-by: Driptaroop Das --- src/main/java/org/onap/dmaap/dbcapi/database/DatabaseClass.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/onap/dmaap/dbcapi/database/DatabaseClass.java b/src/main/java/org/onap/dmaap/dbcapi/database/DatabaseClass.java index 934b7bb..b404479 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/database/DatabaseClass.java +++ b/src/main/java/org/onap/dmaap/dbcapi/database/DatabaseClass.java @@ -3,6 +3,8 @@ * org.onap.dmaap * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,7 +57,7 @@ public class DatabaseClass extends BaseLoggingClass { if (val == null) { return(null); } - List rv = new ArrayList(); + List rv = new ArrayList<>(); for (String s: val.split(",")) { rv.add(new String(s)); } -- 2.16.6