From 2ebe1425ae8e90d5243960a5ac66dd009251b75b Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Thu, 17 Jun 2021 14:54:22 -0400 Subject: Use lombok in drools-apps Issue-ID: POLICY-3398 Change-Id: I2afedc900bc268dc83f689624b4daabdb64a09f9 Signed-off-by: Jim Hahn --- .../onap/policy/controlloop/common/rules/test/HttpClients.java | 10 +--------- .../onap/policy/controlloop/common/rules/test/Simulators.java | 9 +-------- .../org/onap/policy/controlloop/common/rules/test/Topics.java | 8 -------- 3 files changed, 2 insertions(+), 25 deletions(-) (limited to 'controlloop/common/rules-test') diff --git a/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/HttpClients.java b/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/HttpClients.java index eb729ad6d..208cdc937 100644 --- a/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/HttpClients.java +++ b/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/HttpClients.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP * ================================================================================ - * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,14 +30,6 @@ import org.onap.policy.drools.persistence.SystemPersistenceConstants; */ public class HttpClients { - /** - * Constructs the object. - */ - public HttpClients() { - super(); - } - - /** * Adds Http Clients specified in the property file. * diff --git a/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/Simulators.java b/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/Simulators.java index 4a325a447..b1d3d544e 100644 --- a/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/Simulators.java +++ b/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/Simulators.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP * ================================================================================ - * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -37,13 +37,6 @@ public class Simulators { @Getter(AccessLevel.PROTECTED) private final List servers = new LinkedList<>(); - /** - * Constructs the object. - */ - public Simulators() { - super(); - } - /** * Invokes the given functions to start the simulators. Destroys all of the * simulators if any fail to start. diff --git a/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/Topics.java b/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/Topics.java index ff3abed48..051270f6f 100644 --- a/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/Topics.java +++ b/controlloop/common/rules-test/src/main/java/org/onap/policy/controlloop/common/rules/test/Topics.java @@ -49,14 +49,6 @@ public class Topics { */ private final List> listeners = new LinkedList<>(); - - /** - * Constructs the object. - */ - public Topics() { - super(); - } - /** * Unregisters all of the listeners. */ -- cgit 1.2.3-korg