aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDriptaroop Das <driptaroop.das@in.ibm.com>2019-01-08 15:27:20 +0530
committerDriptaroop Das <driptaroop.das@in.ibm.com>2019-01-08 15:27:31 +0530
commitfadc30b0be7a0bd75839f1dd859eadfc1cfe24f0 (patch)
tree9ca3539ee4ba80207afebf59b592f4454a85f53c
parent2941d6a78d2eec8c6fb87d44e14f512b314e31f0 (diff)
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 <driptaroop.das@in.ibm.com>
-rw-r--r--src/main/java/org/onap/dmaap/dbcapi/database/DatabaseClass.java4
1 files changed, 3 insertions, 1 deletions
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<String> rv = new ArrayList<String>();
+ List<String> rv = new ArrayList<>();
for (String s: val.split(",")) {
rv.add(new String(s));
}