Skip to content

Commit 0cc69d0

Browse files
committed
Update DataIO.java
1 parent 18bd962 commit 0cc69d0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/dev/felnull/DataIO/DataIO.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,8 @@ public static boolean saveInventoryOnly(GroupData g, StorageData storageData, St
376376
return false;
377377
}
378378
}
379-
380-
public static void saveTags(Connection conn, GroupData g) throws SQLException {
379+
/*
380+
private static void saveTags(Connection conn, GroupData g) throws SQLException {
381381
String sql = "REPLACE INTO tag_table (group_uuid, plugin_name, page_id, user_tag) VALUES (?, ?, ?, ?)";
382382
try (PreparedStatement ps = conn.prepareStatement(sql)) {
383383
for (Map.Entry<String, InventoryData> entry : g.storageData.storageInventory.entrySet()) {
@@ -397,6 +397,7 @@ public static void saveTags(Connection conn, GroupData g) throws SQLException {
397397
ps.executeBatch();
398398
}
399399
}
400+
*/
400401

401402

402403
// ===========================================================

0 commit comments

Comments
 (0)