(ChunkPosition pos, String data)
| 82 | } |
| 83 | |
| 84 | @Override |
| 85 | public CompletableFuture<Void> save(ChunkPosition pos, String data) { |
| 86 | return CompletableFuture.runAsync(() -> { |
| 87 | helper.executeUpdate("REPLACE INTO data VALUES (?, ?, ?, ?);", pos.getX(), pos.getZ(), pos.getWorld().getName(), data); |
| 88 | }, exec); |
| 89 | } |
| 90 | |
| 91 | @Override |
| 92 | public CompletableFuture<Void> remove(ChunkPosition pos) { |
nothing calls this directly
no test coverage detected