Skip to content

Commit

Permalink
Variable names renamed to sensible names
Browse files Browse the repository at this point in the history
  • Loading branch information
Orlion authored and qmwu2000 committed Jul 25, 2024
1 parent bd34b0c commit 60693f7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ public boolean isMessageEnabled() {
}

public boolean isTraceMode() {
Context content = getContext();
Context ctx = getContext();

if (content != null) {
return content.isTraceMode();
if (ctx != null) {
return ctx.isTraceMode();
} else {
return false;
}
Expand Down

0 comments on commit 60693f7

Please sign in to comment.