Remove UpdateUI#pruneSchema method

Change-Id: Ibb5d3e74463bd72279bff6f0b104e97f1cc80194
This commit is contained in:
Dave Borowitz
2018-12-17 14:59:24 -08:00
parent b397acf45e
commit 63c60a4831
3 changed files with 0 additions and 22 deletions

View File

@@ -14,9 +14,6 @@
package com.google.gerrit.server.schema;
import com.google.gwtorm.server.OrmException;
import com.google.gwtorm.server.StatementExecutor;
import java.util.List;
import java.util.Set;
public interface UpdateUI {
@@ -37,6 +34,4 @@ public interface UpdateUI {
String readString(String defaultValue, Set<String> allowedValues, String message);
boolean isBatch();
void pruneSchema(StatementExecutor e, List<String> pruneList) throws OrmException;
}