Skip to content

Commit

Permalink
Merge pull request #8 from jamezp/minor-updates
Browse files Browse the repository at this point in the history
Minor component upgrades and a compiler warning fix
  • Loading branch information
jamezp committed Oct 12, 2020
2 parents 6edeeaf + 21871d0 commit 18431a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>34</version>
<version>37</version>
</parent>

<properties>
<version.org.jboss.logmanager>2.1.10.Final</version.org.jboss.logmanager>
<version.org.slf4j>1.7.22</version.org.slf4j>
<version.org.jboss.logmanager>2.1.17.Final</version.org.jboss.logmanager>
<version.org.slf4j>1.7.30</version.org.slf4j>
</properties>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/slf4j/impl/Slf4jMDCAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void clear() {
MDC.clear();
}

public Map getCopyOfContextMap() {
public Map<String, String> getCopyOfContextMap() {
return MDC.copy();
}

Expand Down

0 comments on commit 18431a3

Please sign in to comment.