Skip to content

Commit 67d2cff

Browse files
committed
Fixed SpotBugs issue only found on the build server for some reason...
1 parent 1d76a8c commit 67d2cff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/cli-module/src/main/java/org/simplejavamail/internal/clisupport/therapijavadoc/SimpleHTMLEscapeUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.util.Map;
55

66
public class SimpleHTMLEscapeUtil {
7-
public static final Map<Character, String> ESCAPE_MAP = new HashMap<Character, String>() {{
7+
private static final Map<Character, String> ESCAPE_MAP = new HashMap<Character, String>() {{
88
put('"', "&quot;");
99
put('&', "&amp;");
1010
put('<', "&lt;");

0 commit comments

Comments
 (0)