Make clear method on StoredConfig public

EGit needs this to be able to revert unsaved changes.

Change-Id: I50cc8056aaff47fef6080970866962e3eb634e29
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Robin Rosenberg 2012-06-21 01:07:36 +02:00 committed by Matthias Sohn
parent 6ba8b038ce
commit b0349227e4
1 changed files with 5 additions and 0 deletions

View File

@ -87,4 +87,9 @@ public StoredConfig(Config defaultConfig) {
* the configuration could not be written.
*/
public abstract void save() throws IOException;
@Override
public void clear() {
super.clear();
}
}