Skip to content

Commit

Permalink
Fixed nasty error with redundant format specified
Browse files Browse the repository at this point in the history
  • Loading branch information
kocherovms committed Mar 14, 2016
1 parent fc19cfc commit f4aaf41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/develorium/metracer/Main.java
Expand Up @@ -224,7 +224,7 @@ private void configureAgent() {
}
else {
int[] counters = agent.setPatterns(classMatchingPattern, methodMatchingPattern);
say(String.format("Class matching pattern set to \"%s\"%s", classMatchingPattern));
say(String.format("Class matching pattern set to \"%s\"", classMatchingPattern));

if(methodMatchingPattern != null)
say(String.format("Method matching pattern set to \"%s\"", methodMatchingPattern));
Expand Down

0 comments on commit f4aaf41

Please sign in to comment.