mirror of
https://github.com/google/nomulus
synced 2026-02-07 13:31:12 +00:00
Remove now-unused "logger" from ReplaySpecializer (#1007)
* Remove now-unused "logger" from ReplaySpecializer This causes a build warning. * Take out the import, too
This commit is contained in:
@@ -14,7 +14,6 @@
|
||||
|
||||
package google.registry.schema.replay;
|
||||
|
||||
import com.google.common.flogger.FluentLogger;
|
||||
import google.registry.persistence.VKey;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
@@ -27,8 +26,6 @@ import java.lang.reflect.Method;
|
||||
* to invoke special class methods if they are present.
|
||||
*/
|
||||
public class ReplaySpecializer {
|
||||
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
|
||||
|
||||
public static void beforeSqlDelete(VKey<?> key) {
|
||||
try {
|
||||
Method method = key.getKind().getMethod("beforeSqlDelete", VKey.class);
|
||||
|
||||
Reference in New Issue
Block a user