(@NotNull String dbName, @NotNull Table table)
| 400 | } |
| 401 | |
| 402 | public void removeTable(@NotNull String dbName, @NotNull Table table) { |
| 403 | tables.remove(table.getId()); |
| 404 | tableNameMap.remove(table.getName()); |
| 405 | getDatabase(dbName).removeTable(table); |
| 406 | } |
| 407 | |
| 408 | public @Nullable Table getTable(int id) { |
| 409 | return tables.get(id); |
nothing calls this directly
no test coverage detected