Skip to content

Commit ae42897

Browse files
committed
clean
1 parent 187a2e3 commit ae42897

File tree

1 file changed

+1
-8
lines changed
  • src/main/java/org/maxgamer/quickshop/util

1 file changed

+1
-8
lines changed

src/main/java/org/maxgamer/quickshop/util/Util.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public static String boolean2Status(boolean bool) {
135135
*
136136
* @return The result for backup
137137
*/
138+
// TODO: MySQL support
138139
public static boolean backupDatabase() {
139140
if (plugin.getDatabaseManager().getDatabase() instanceof MySQLCore) {
140141
return true; // Backup and logs by MySQL
@@ -954,14 +955,6 @@ public static String list2String(@NotNull List<String> strList) {
954955
StringJoiner joiner = new StringJoiner(", ", "", "");
955956
strList.forEach(joiner::add);
956957
return joiner.toString();
957-
// StringBuilder builder = new StringBuilder();
958-
// for (int i = 0; i < strList.size(); i++) {
959-
// builder.append(strList.get(i));
960-
// if (i + 1 != strList.size()) {
961-
// builder.append(", ");
962-
// }
963-
// }
964-
// return builder.toString();
965958
}
966959

967960
/**

0 commit comments

Comments
 (0)