Skip to content

Commit

Permalink
Merge pull request #85 from mdietz198/master
Browse files Browse the repository at this point in the history
Remove unnecessary synchronized in JDK14LoggerFactory
  • Loading branch information
mattbishop committed Oct 15, 2014
2 parents 16ded72 + 52c32f5 commit 6d8d41c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@ public JDK14LoggerFactory() {
*
* @see org.slf4j.ILoggerFactory#getLogger(java.lang.String)
*/
public synchronized Logger getLogger(String name) {
public Logger getLogger(String name) {
// the root logger is called "" in JUL
if(name.equalsIgnoreCase(Logger.ROOT_LOGGER_NAME)) {
name = "";
Expand Down

0 comments on commit 6d8d41c

Please sign in to comment.