Skip to content

Commit

Permalink
fix: use new logger
Browse files Browse the repository at this point in the history
  • Loading branch information
zlataovce authored Aug 17, 2024
1 parent 490c254 commit 28d44f9
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
import java.util.Iterator;
import java.util.Objects;
import java.util.Set;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import proguard.classfile.AccessConstants;
import proguard.classfile.ClassConstants;
import proguard.classfile.Clazz;
Expand All @@ -40,6 +38,7 @@
import proguard.evaluation.exception.IncompleteClassHierarchyException;
import proguard.evaluation.exception.ValueTypeException;
import proguard.evaluation.value.object.AnalyzedObjectFactory;
import proguard.util.Logger;

/**
* This {@link ReferenceValue} represents a partially evaluated reference value. It has a type and a
Expand All @@ -65,7 +64,7 @@ public class TypedReferenceValue extends ReferenceValue {

private static final boolean DEBUG = false;

private static final Logger logger = LogManager.getLogger(TypedReferenceValue.class);
private static final Logger logger = Logger.getLogger(TypedReferenceValue.class);

protected final String type;
protected final Clazz referencedClass;
Expand Down

0 comments on commit 28d44f9

Please sign in to comment.