Skip to content

Commit

Permalink
Don't string concat
Browse files Browse the repository at this point in the history
  • Loading branch information
csmith committed Feb 1, 2015
1 parent 00171f9 commit 51e466c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/dmdirc/ParserFactory.java
Expand Up @@ -216,7 +216,7 @@ protected Object getExportResult(final URI address,
}
}
} catch (NoSuchProviderException nspe) {
LOG.warn(USER_ERROR, "No parser found for " + address.getScheme(), nspe);
LOG.warn(USER_ERROR, "No parser found for {}", address.getScheme(), nspe);
}

return null;
Expand Down

0 comments on commit 51e466c

Please sign in to comment.