From 63112eed7bb0dcdc33b4b10dfa0fba26c551d927 Mon Sep 17 00:00:00 2001 From: 02090095 Date: Mon, 13 Jan 2025 22:43:00 +0300 Subject: [PATCH] no message --- src/_VisualDVM/GlobalProperties.java | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/_VisualDVM/GlobalProperties.java b/src/_VisualDVM/GlobalProperties.java index 7318a67b..c4cf7b35 100644 --- a/src/_VisualDVM/GlobalProperties.java +++ b/src/_VisualDVM/GlobalProperties.java @@ -262,26 +262,6 @@ public class GlobalProperties { } } //----------------- - public boolean getFlag(String fieldName) { - boolean field = false; - try { - field = (boolean) getClass().getField(fieldName).get(this); - // - } catch (Exception ex) { - ex.printStackTrace(); - } - return field; - } - public void switchFlag(String fieldName) { - boolean field = false; - try { - field = (boolean) getClass().getField(fieldName).get(this); - getClass().getField(fieldName).set(this, !field); - // - } catch (Exception ex) { - ex.printStackTrace(); - } - } public void Update() { try { Utils_.jsonToFile(this, getFile());