Commit 28546b7c authored by Leonardo Aramaki's avatar Leonardo Aramaki

Make pmd happy

parent 79588c77
...@@ -191,7 +191,7 @@ public class MessagePopup { ...@@ -191,7 +191,7 @@ public class MessagePopup {
} }
private static class Builder { private static class Builder {
final Message message; private final Message message;
Builder(Message message) { Builder(Message message) {
if (message == null) { if (message == null) {
throw new IllegalArgumentException("Message must not be null"); throw new IllegalArgumentException("Message must not be null");
...@@ -206,9 +206,9 @@ public class MessagePopup { ...@@ -206,9 +206,9 @@ public class MessagePopup {
} }
public static class Action { public static class Action {
CharSequence actionName; private CharSequence actionName;
ActionListener actionListener; private ActionListener actionListener;
boolean allowed; private boolean allowed;
public Action(CharSequence actionName, ActionListener actionListener, boolean allowed) { public Action(CharSequence actionName, ActionListener actionListener, boolean allowed) {
this.actionName = actionName; this.actionName = actionName;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment