added first version of configuraiton api and simple function test.
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / ConfigImpl.java
index 54c0c6d2357604103284b1d818c754a2e1fdc551..e29725e8655d2be5ad4fab667d4152dca68e37e8 100644 (file)
@@ -101,14 +101,4 @@ public abstract class ConfigImpl<T> implements ExtendedConfig<T> {
             throw new NullPointerException("Id is null");
         }
     }
-
-    @Override
-    public boolean isDirty() {
-        return dirty;
-    }
-
-    @Override
-    public void resetDirty() {
-        dirty = false;
-    }
 }