File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
src/main/java/org/maxgamer/quickshop/util Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff 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 /**
You can’t perform that action at this time.
0 commit comments