Двоеточия в счетчиках таблиц. Исправление бага с неотображением версий при загрузке базы.

This commit is contained in:
2023-11-13 17:12:16 +03:00
parent 84f87ca957
commit 7506a41499
13 changed files with 34 additions and 20 deletions

View File

@@ -284,6 +284,8 @@ public abstract class RepositoryServer<D extends Database> {
case GetObjectsCopiesByPK:
Print("Получить список копий объектов по ключам");
p = (Pair<Class, Object>) request.object;
System.out.println(p.getKey());
System.out.println(p.getValue());
response = new ServerExchangeUnit_2021(ServerCode.OK);
response.object = db.getObjectsCopies(p.getKey(), (Vector<Object>) p.getValue());
break;