mirror of
https://github.com/google/nomulus.git
synced 2025-07-04 18:23:26 +02: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:
parent
684517e35a
commit
c8385617bd
1 changed files with 0 additions and 3 deletions
|
@ -14,7 +14,6 @@
|
||||||
|
|
||||||
package google.registry.schema.replay;
|
package google.registry.schema.replay;
|
||||||
|
|
||||||
import com.google.common.flogger.FluentLogger;
|
|
||||||
import google.registry.persistence.VKey;
|
import google.registry.persistence.VKey;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
|
@ -27,8 +26,6 @@ import java.lang.reflect.Method;
|
||||||
* to invoke special class methods if they are present.
|
* to invoke special class methods if they are present.
|
||||||
*/
|
*/
|
||||||
public class ReplaySpecializer {
|
public class ReplaySpecializer {
|
||||||
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
|
|
||||||
|
|
||||||
public static void beforeSqlDelete(VKey<?> key) {
|
public static void beforeSqlDelete(VKey<?> key) {
|
||||||
try {
|
try {
|
||||||
Method method = key.getKind().getMethod("beforeSqlDelete", VKey.class);
|
Method method = key.getKind().getMethod("beforeSqlDelete", VKey.class);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue