5354555657585960616263
// be cleared for the next runs try { IniFileManipulator m = new IniFileManipulator(); m.load(); m.unsetClearPersistedState(); if (m.isDirty()) m.save(); } catch (IOException ignore)
179180181182183184185186187188189
private void setClearPersistedStateFlag() { try { IniFileManipulator m = new IniFileManipulator(); m.load(); m.setClearPersistedState(); if (m.isDirty()) m.save(); } catch (IOException ignore)