This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
The following commit(s) were added to refs/heads/trunk by this push:
new 7e4dc9a Improved: Fix some bugs Spotbugs reports (OFBIZ-12386)
7e4dc9a is described below
commit 7e4dc9a35348aa0dc21fe8be4a629623c6d90ad9
Author: Jacques Le Roux <[email protected]>
AuthorDate: Tue Dec 28 11:42:33 2021 +0100
Improved: Fix some bugs Spotbugs reports (OFBIZ-12386)
Fixes a typo automatically put in by
https://github.com/apache/ofbiz-tools/blob/master/wiki-files/OFBizJavaFormatter.xml
I have not the guts to change that :/ Maybe later...
---
.../main/java/org/apache/ofbiz/htmlreport/sample/SampleHtmlThread.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/pricat/src/main/java/org/apache/ofbiz/htmlreport/sample/SampleHtmlThread.java
b/pricat/src/main/java/org/apache/ofbiz/htmlreport/sample/SampleHtmlThread.java
index 7adb1f2..c11aa65 100644
---
a/pricat/src/main/java/org/apache/ofbiz/htmlreport/sample/SampleHtmlThread.java
+++
b/pricat/src/main/java/org/apache/ofbiz/htmlreport/sample/SampleHtmlThread.java
@@ -39,7 +39,7 @@ public class SampleHtmlThread extends AbstractReportThread {
public static final String COUNT_DOWN = "countdown";
public static final String COUNT_UP = "countup";
public static final String CONFIRM = "confirm_action";
- public static final String[] MESSAGE_LABELS = new String[] {
"FORMAT_DEFAULT", "FORMAT_WARNING", "FORMAT_HEADLINE", "FORMAT_NOTE",
+ public static final String[] MESSAGE_LABELS = new String[]
{"FORMAT_DEFAULT", "FORMAT_WARNING", "FORMAT_HEADLINE", "FORMAT_NOTE",
"FORMAT_OK", "FORMAT_ERROR", "FORMAT_THROWABLE"};
public static final List<String> MESSAGES =
Collections.unmodifiableList(Arrays.asList(MESSAGE_LABELS));
private static final String RESOURCE = "PricatUiLabels";