diff --git a/docs/config_whitespace.html b/docs/config_whitespace.html index 546cafc25..0535a1735 100644 --- a/docs/config_whitespace.html +++ b/docs/config_whitespace.html @@ -22,6 +22,9 @@
+ Checks the padding of an empty for initializer; that is whether white + space is required at an empty for initializer, or such white space is + forbidden. + No check occurs if there is a line wrap at the initializer, as in +
++for ( + ; i < j; i++, j--) ++
| name | +description | +type | +default value | +
|---|---|---|---|
| option | +policy on how to pad an empty for iterator | +pad policy | +nospace | +
+ To configure the check: +
++<module name="EmptyForInitializerPad"/> ++
+ To configure the check to require white space at an empty for iterator: +
++<module name="EmptyForInitializerPad"> + <property name="option" value="space"/> +</module> ++
+ com.puppycrawl.tools.checkstyle.checks.whitespace +
+ ++ TreeWalker +
+@@ -68,7 +124,7 @@
for (Iterator foo = very.long.line.iterator();
foo.hasNext();
- )
+ )