#9 -v CLI flag for querying the installed Checkstyle version

Fixed formatting issue.
This commit is contained in:
ychulovskyy 2014-11-22 08:50:15 +01:00
parent f85edb7127
commit bbd59b7b88
1 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,8 @@ public final class Main
// show version and exit
if (line.hasOption("v")) {
System.out.println("Checkstyle version: " + Main.class.getPackage().getImplementationVersion());
System.out.println("Checkstyle version: "
+ Main.class.getPackage().getImplementationVersion());
System.exit(0);
}