Skip to content

Commit

Permalink
fix binary incompatibility issue
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed May 14, 2022
1 parent db04510 commit 0cbed42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/apache/log4j/MDC.java
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class MDC {

// boolean java1;

ThreadLocalMap tlm;
Object tlm;

private MDC() {
tlm = new ThreadLocalMap();
Expand Down Expand Up @@ -170,7 +170,7 @@ private void clear0() {
ht.clear();
}

tlm.remove();
(ThreadLocalMap) tlm).remove();
}
}

Expand Down

0 comments on commit 0cbed42

Please sign in to comment.