Merge "PluginConfigFactory: reload also outdated secure store"

This commit is contained in:
Saša Živkov
2017-02-17 13:44:07 +00:00
committed by Gerrit Code Review
4 changed files with 34 additions and 0 deletions

View File

@@ -139,5 +139,15 @@ public class UpgradeFrom2_0_xTest extends InitTestCase {
public Iterable<EntryKey> list() {
throw new UnsupportedOperationException("not used by tests");
}
@Override
public boolean isOutdated() {
throw new UnsupportedOperationException("not used by tests");
}
@Override
public void reload() {
throw new UnsupportedOperationException("not used by tests");
}
}
}