aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDriptaroop Das <driptaroop.das@in.ibm.com>2019-01-07 12:36:22 +0530
committerDriptaroop Das <driptaroop.das@in.ibm.com>2019-01-07 12:36:39 +0530
commite7b9f6a8c2ad5b314aaae6051fb324c223fe0e89 (patch)
tree08ef895cc6a1e30790ff58df36e07ae8b42c55f1
parent536c6aabdfd2bcdc493501a9498fb8a97d208c0b (diff)
TopicService-replace type with diamonds
TopicService.java - Replace the type specification in this constructor call with the diamond operator ("<>"). Issue-ID: DMAAP-934 Change-Id: I74c83f83e75fb26ddd56f8df6a5a0ff572d6f74e Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
-rw-r--r--src/main/java/org/onap/dmaap/dbcapi/service/TopicService.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dmaap/dbcapi/service/TopicService.java b/src/main/java/org/onap/dmaap/dbcapi/service/TopicService.java
index cfec54e..8ade70f 100644
--- a/src/main/java/org/onap/dmaap/dbcapi/service/TopicService.java
+++ b/src/main/java/org/onap/dmaap/dbcapi/service/TopicService.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.
@@ -91,7 +93,7 @@ public class TopicService extends BaseLoggingClass {
}
private List<Topic> getAllTopics( Boolean withClients ) {
- ArrayList<Topic> topics = new ArrayList<Topic>(mr_topics.values());
+ ArrayList<Topic> topics = new ArrayList<>(mr_topics.values());
if ( withClients ) {
for( Topic topic: topics ) {
topic.setClients( clientService.getAllMrClients(topic.getFqtn()));