From: Driptaroop Das Date: Tue, 8 Jan 2019 09:57:20 +0000 (+0530) Subject: DatabaseClass-replaced type with diamonds X-Git-Tag: 1.0.26~58^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=dmaap%2Fdbcapi.git;a=commitdiff_plain;h=fadc30b0be7a0bd75839f1dd859eadfc1cfe24f0 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 --- 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)); }