Skip to content

Commit bff6f28

Browse files
bitroncmaglie
authored andcommitted
Renamed user notifier classes.
1 parent 1c37189 commit bff6f28

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

app/src/processing/app/Base.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import processing.app.debug.TargetPackage;
3737
import processing.app.debug.TargetPlatform;
3838
import processing.app.helpers.FileUtils;
39-
import processing.app.helpers.GUINotifier;
39+
import processing.app.helpers.GUIUserNotifier;
4040
import processing.app.helpers.OSUtils;
4141
import processing.app.helpers.PreferencesMap;
4242
import processing.app.helpers.filefilters.OnlyDirs;
@@ -106,7 +106,7 @@ public class Base {
106106
static public void main(String args[]) throws Exception {
107107
BaseNoGui.initLogger();
108108

109-
BaseNoGui.notifier = new GUINotifier();
109+
BaseNoGui.notifier = new GUIUserNotifier();
110110

111111
initPlatform();
112112

app/src/processing/app/BaseNoGui.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import processing.app.debug.TargetPackage;
2222
import processing.app.debug.TargetPlatform;
2323
import processing.app.debug.TargetPlatformException;
24-
import processing.app.helpers.BasicNotifier;
24+
import processing.app.helpers.BasicUserNotifier;
2525
import processing.app.helpers.OSUtils;
2626
import processing.app.helpers.PreferencesMap;
2727
import processing.app.helpers.UserNotifier;
@@ -49,7 +49,7 @@ public class BaseNoGui {
4949
// maps library name to their library folder
5050
static private LibraryList libraries;
5151

52-
static UserNotifier notifier = new BasicNotifier();
52+
static UserNotifier notifier = new BasicUserNotifier();
5353

5454
static public Map<String, TargetPackage> packages;
5555

app/src/processing/app/helpers/BasicNotifier.java renamed to app/src/processing/app/helpers/BasicUserNotifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import static processing.app.I18n._;
44

5-
public class BasicNotifier implements UserNotifier {
5+
public class BasicUserNotifier implements UserNotifier {
66

77
public void showError(String title, String message, Throwable e) {
88
showError(title, message, e, 1);

app/src/processing/app/helpers/GUINotifier.java renamed to app/src/processing/app/helpers/GUIUserNotifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import javax.swing.JOptionPane;
88

9-
public class GUINotifier implements UserNotifier {
9+
public class GUIUserNotifier implements UserNotifier {
1010

1111
public void showError(String title, String message, Throwable e) {
1212
showError(title, message, e, 1);

0 commit comments

Comments
 (0)