Skip to content

Commit

Permalink
Remove unnecessary synchronized in JDK14LoggerFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
mdietz198 committed Oct 15, 2014
1 parent 16ded72 commit 52c32f5
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 52c32f5

Please sign in to comment.