summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorwaynedunican <wayne.dunican@est.tech>2020-09-03 12:56:54 +0100
committerwaynedunican <wayne.dunican@est.tech>2020-09-03 17:17:02 +0100
commit917ebfc9561115b66b03a7bb2a1ade38d3667219 (patch)
treefed344f18ce12df69a5d022401fc734f284d1bdc /tools
parent6f154bcd5c86bf9027d297df8cbdb8310eb88754 (diff)
Sonar Bug fixes
Removal of remaining bugs in apex-pdp Issue-ID: POLICY-2774 Change-Id: I370796e7c8a41c116155155c33176512e9e0cd91 Signed-off-by: waynedunican <wayne.dunican@est.tech>
Diffstat (limited to 'tools')
-rw-r--r--tools/tools-common/src/main/java/org/onap/policy/apex/tools/common/Console.java14
1 files changed, 7 insertions, 7 deletions
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());
}
}