рефакторинг дерева версий пакета. добавил категорию по совпадениям.

This commit is contained in:
2023-11-06 22:20:18 +03:00
parent 51f67594c2
commit 5a857878d1
15 changed files with 186 additions and 94 deletions

View File

@@ -13,9 +13,9 @@ public enum MatchState implements StatusEnum {
case Unknown:
return "неизвестно";
case Match:
return "да";
return "совпадений";
case NotMatch:
return "нет";
return "различий";
default:
return "?";
}