Устранены пропущенные уязвимости в некоторых проходах
v++
This commit is contained in:
2025-02-22 16:10:21 +03:00
parent f7973e0991
commit c83cfd9eff
9 changed files with 24 additions and 23 deletions

View File

@@ -300,6 +300,14 @@ public abstract class Database {
}
return log.isEmpty();
}
public boolean canModifyCurrent(TextLog log, Class... tablesClasses) {
for (Class tableClass : tablesClasses) {
DBTable table = getTable(tableClass);
if (table.getUI() != null)
table.getUI().canModifyCurrent(log);
}
return log.isEmpty();
}
public abstract PassCode_ getSynchronizePassCode(); //если бд есть на сервере.
//--
public void ReplaceFileAndReconnect(File file_in) throws Exception{