Skip to content

Commit

Permalink
Capitalize constant.
Browse files Browse the repository at this point in the history
  • Loading branch information
khatchad committed Apr 8, 2024
1 parent 544499d commit 9fbd8d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@

public class PythonCAstToIRTranslator extends AstTranslator {

private static final Logger logger = Logger.getLogger(PythonCAstToIRTranslator.class.getName());
private static final Logger LOGGER = Logger.getLogger(PythonCAstToIRTranslator.class.getName());

private final Map<CAstType, TypeName> walaTypeNames = HashMapFactory.make();
private final Set<Pair<Scope, String>> globalDeclSet = new HashSet<>();
Expand Down Expand Up @@ -887,7 +887,7 @@ protected void doCall(
((CAstControlFlowRecorder) context.getControlFlow()).map(call, call);

if (context.getControlFlow().getTargetLabels(call).isEmpty()) {
logger.fine(() -> "no exceptions for " + CAstPrinter.print(call));
LOGGER.fine(() -> "no exceptions for " + CAstPrinter.print(call));
context.cfg().addPreEdgeToExit(call, true);
} else {
context
Expand Down

0 comments on commit 9fbd8d1

Please sign in to comment.