From c13d2a9d2f1b23436edfc3bcfcbed56b7e541e90 Mon Sep 17 00:00:00 2001
From: Oliver Burn
- java -classpath checkstyle-all-@CHECKSTYLE_VERSION@.jar com.puppycrawl.tools.checkstyle.gui.Main
+ java -classpath checkstyle-all-@CHECKSTYLE_VERSION@.jar \
+ com.puppycrawl.tools.checkstyle.gui.Main
on the command line. Click the button at the bottom of the frame @@ -268,7 +269,8 @@ { int methodDefs = ast.getChildCount(TokenTypes.METHOD_DEF); if (methodDefs > max) { - log(ast.getLineNo(), "too many methods, only " + max + " are allowed"); + log(ast.getLineNo(), + "too many methods, only " + max + " are allowed"); } } } @@ -415,7 +417,9 @@ e.g. mycompanychecks.jar. Then run:
- java -classpath mycompanychecks.jar -jar checkstyle-all-@CHECKSTYLE_VERSION@ -c config.xml -r .
+ java -classpath mycompanychecks.jar \
+ -jar checkstyle-all-@CHECKSTYLE_VERSION@ \
+ -c config.xml -r .