Сохранение настроект тестирования.
This commit is contained in:
2023-11-13 21:08:44 +03:00
parent a76e9d0310
commit 543b246ce6

View File

@@ -56,6 +56,7 @@ public abstract class Properties {
return false; return false;
//-- //--
field.set(this, newValue); field.set(this, newValue);
this.Update();
return true; return true;
//-- //--
} catch (Exception exception) { } catch (Exception exception) {
@@ -70,6 +71,7 @@ public abstract class Properties {
boolean newValue = !oldValue; boolean newValue = !oldValue;
//--- //---
field.set(this, newValue); field.set(this, newValue);
this.Update();
//-- //--
} catch (Exception exception) { } catch (Exception exception) {
exception.printStackTrace(); exception.printStackTrace();