Skip to content

Commit aaa53e1

Browse files
committed
clean
1 parent 578be0d commit aaa53e1

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/main/java/org/maxgamer/quickshop/database/DatabaseHelper.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ public void onFailed(SQLException e) {
120120
try {
121121
if (!manager.hasColumn(plugin.getDbPrefix() + "shops", "extra")) {
122122
String sqlString;
123-
// Reremake - DataStorage
124-
// @TODO needs testing
125123
if (manager.getDatabase() instanceof MySQLCore) {
126124
sqlString = "ALTER TABLE " + plugin
127125
.getDbPrefix() + "shops ADD extra LONGTEXT";

src/main/java/org/maxgamer/quickshop/eventmanager/QSEventManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private synchronized void rescan() {
7575
try {
7676
Class<?> clazz = Class.forName(input);
7777
this.ignoredListener.add(new ListenerContainer(clazz, input));
78-
Util.debugLog("Successfully added blacklist: [CLAZZ] " + clazz.getName());
78+
Util.debugLog("Successfully added blacklist: [BINDING] " + clazz.getName());
7979
} catch (Exception ignored) {
8080
this.ignoredListener.add(new ListenerContainer(null, input));
8181
Util.debugLog("Successfully added blacklist: [DYNAMIC] " + input);

0 commit comments

Comments
 (0)