From 917ebfc9561115b66b03a7bb2a1ade38d3667219 Mon Sep 17 00:00:00 2001 From: waynedunican Date: Thu, 3 Sep 2020 12:56:54 +0100 Subject: Sonar Bug fixes Removal of remaining bugs in apex-pdp Issue-ID: POLICY-2774 Change-Id: I370796e7c8a41c116155155c33176512e9e0cd91 Signed-off-by: waynedunican --- .../java/org/onap/policy/apex/tools/common/Console.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tools/tools-common/src') diff --git a/tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/Console.java b/tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/Console.java index 5c79fa4bc..1b80af3f2 100644 --- a/tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/Console.java +++ b/tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/Console.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. @@ -24,7 +25,6 @@ import java.io.PrintStream; import java.util.ArrayList; import java.util.List; import org.apache.commons.lang3.StringUtils; -import org.apache.commons.text.StrBuilder; import org.slf4j.ext.XLoggerFactory; import org.slf4j.helpers.MessageFormatter; @@ -188,7 +188,7 @@ public final class Console { return; } - final StrBuilder err = new StrBuilder(); + final StringBuilder err = new StringBuilder(); if (appName != null) { err.append(this.getAppName()).append(": "); } @@ -196,10 +196,10 @@ public final class Console { err.append(MessageFormatter.arrayFormat(message, objects).getMessage()); if ((types & TYPE_ERROR) == TYPE_ERROR) { - ERR_STREAM.println(err.build()); + ERR_STREAM.println(err.toString()); } if ((configuration & CONFIG_COLLECT_ERRORS) == CONFIG_COLLECT_ERRORS) { - errors.add(err.build()); + errors.add(err.toString()); } } @@ -217,7 +217,7 @@ public final class Console { return; } - final StrBuilder warn = new StrBuilder(); + final StringBuilder warn = new StringBuilder(); if (appName != null) { warn.append(this.getAppName()).append(": "); } @@ -225,10 +225,10 @@ public final class Console { warn.append(MessageFormatter.arrayFormat(message, objects).getMessage()); if ((types & TYPE_WARNING) == TYPE_WARNING) { - ERR_STREAM.println(warn.build()); + ERR_STREAM.println(warn.toString()); } if ((configuration & CONFIG_COLLECT_WARNINGS) == CONFIG_COLLECT_WARNINGS) { - warnings.add(warn.build()); + warnings.add(warn.toString()); } } -- cgit 1.2.3-korg