From 0adf8745e1b4f536c334aec137e294a1b046089a Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Fri, 19 May 2006 01:16:04 +0000 Subject: [PATCH] Remove extraneous persistence state and protocol. --- .../rse/internal/filters/SystemFilter.java | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilter.java b/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilter.java index 02edbc1f025..1de781d0626 100644 --- a/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilter.java +++ b/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilter.java @@ -65,10 +65,6 @@ public class SystemFilter extends SystemReferencedObject implements ISystemFilte protected ISystemFilterString[] filterStringObjectArray = null; protected Vector filterStringVector = null; - // persistence - protected boolean _isDirty = true; - protected boolean _wasRestored = false; - //protected static String SAVEFILE_PREFIX = DEFAULT_FILENAME_PREFIX_FILTER; //protected static String SAVEFILE_SUFFIX = ".xmi"; protected static boolean debug = true; @@ -1368,32 +1364,9 @@ public class SystemFilter extends SystemReferencedObject implements ISystemFilte return singleFilterStringOnly; } - /** - * Inidcates whether this filter needs to be saved - */ - public boolean isDirty() - { - return _isDirty; - } - - public void setDirty(boolean dirtyFlag) - { - _isDirty = dirtyFlag; - } - public boolean commit() { return RSEUIPlugin.getThePersistenceManager().commit(this); } - public boolean wasRestored() - { - return _wasRestored; - } - - public void setWasRestored(boolean flag) - { - _wasRestored = flag; - } - } \ No newline at end of file