Skip to content

Commit

Permalink
Rename Map -> map based upon mattbishop comment for #99
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecwik committed Apr 9, 2015
1 parent 95a6f46 commit 734c5e4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -97,9 +97,9 @@ public void put(String key, String val) {
*/
@Override
public String get(String key) {
Map<String, String> Map = inheritableThreadLocal.get();
Map<String, String> map = inheritableThreadLocal.get();
if ((Map != null) && (key != null)) {
return Map.get(key);
return map.get(key);
} else {
return null;
}
Expand Down

0 comments on commit 734c5e4

Please sign in to comment.