diff options
author | JvD_Ericsson <jeff.van.dam@est.tech> | 2020-08-06 10:00:32 +0100 |
---|---|---|
committer | JvD_Ericsson <jeff.van.dam@est.tech> | 2020-08-07 13:59:20 +0100 |
commit | dc2b85e4ae6db95a0c09494a928ee6fbdf95594e (patch) | |
tree | d51499c785a2526d4f401b6d1e650cbae9ec7d38 /client/client-monitoring/src | |
parent | 56e4f452342da2d0a9e0fb822c68b3440476092a (diff) |
Sonar Fixes
Replace the type specification in this constructor call with the diamond operator
and other small fixes
Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Issue-ID: POLICY-2760
Change-Id: I83821859a4a1dbbffbaeae15281abac2de3b5712
Diffstat (limited to 'client/client-monitoring/src')
-rw-r--r-- | client/client-monitoring/src/main/java/org/onap/policy/apex/client/monitoring/rest/ApexMonitoringRestResource.java | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/client/client-monitoring/src/main/java/org/onap/policy/apex/client/monitoring/rest/ApexMonitoringRestResource.java b/client/client-monitoring/src/main/java/org/onap/policy/apex/client/monitoring/rest/ApexMonitoringRestResource.java index dd9d8b2c6..f31f47cd4 100644 --- a/client/client-monitoring/src/main/java/org/onap/policy/apex/client/monitoring/rest/ApexMonitoringRestResource.java +++ b/client/client-monitoring/src/main/java/org/onap/policy/apex/client/monitoring/rest/ApexMonitoringRestResource.java @@ -1,6 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2016-2018 Ericsson. All rights reserved. + * Modifications Copyright (C) 2020 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -294,7 +295,7 @@ public class ApexMonitoringRestResource { SlidingWindowList<Counter> valueList; if (!cache.containsKey(host)) { - cache.put(host, new HashMap<String, List<Counter>>()); + cache.put(host, new HashMap<>()); } if (cache.get(host).containsKey(id)) { @@ -312,7 +313,7 @@ public class ApexMonitoringRestResource { /** * Get an engine service facade for sending REST requests. This method is package because it is used by unit test. - * + * * @param hostName the host name of the Apex engine * @param port the port of the Apex engine * @return the engine service facade @@ -359,21 +360,21 @@ public class ApexMonitoringRestResource { if (this == obj) { return true; } - + if (!super.equals(obj)) { return false; } - + if (getClass() != obj.getClass()) { return false; } - + @SuppressWarnings("unchecked") SlidingWindowList<V> other = (SlidingWindowList<V>) obj; if (!getOuterType().equals(other.getOuterType())) { return false; } - + return maxEntries == other.maxEntries; } } |