Browse Source

Codacy issue fix

Toni Helenius 3 years ago
parent
commit
06603967c5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      jme3-core/src/com/jme3/gde/core/util/notify/NotifyUtil.java

+ 2 - 2
jme3-core/src/com/jme3/gde/core/util/notify/NotifyUtil.java

@@ -67,8 +67,8 @@ public class NotifyUtil {
         if (title == null) {
             title = "null";
         }
-        final Notification n = NotificationDisplayer.getDefault()
-                .notify(title, type.getIcon(), message, actionListener);
+        final Notification n = NotificationDisplayer.getDefault().
+                notify(title, type.getIcon(), message, actionListener);
         if (timeout > 0) {
             REQUEST_PROCESSOR.post(new Runnable() {
                 @Override