aboutsummaryrefslogtreecommitdiff
path: root/checkstyle.xml
diff options
context:
space:
mode:
authorHannes Dorfmann <hannes.dorfmann@gmail.com>2016-01-19 11:57:13 +0100
committerjwilson <jwilson@squareup.com>2016-01-19 12:25:46 -0500
commit191787d4ba266b7bb172effa5eb00df6875b39a7 (patch)
treec8197126f8889f8c15ef8aeafffdb21468559cb1 /checkstyle.xml
parente3e7652c8abdd64a6d0d5aa723421cba2311ecfe (diff)
downloadjavapoet-191787d4ba266b7bb172effa5eb00df6875b39a7.tar.gz
Added support for initializer blocks; Bugfix in TypeSpec.toBuilder() for static initializer block
Diffstat (limited to 'checkstyle.xml')
-rw-r--r--checkstyle.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/checkstyle.xml b/checkstyle.xml
index 479f477..1e14f78 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -54,7 +54,9 @@
<module name="LineLength">
<property name="max" value="100"/>
</module>
- <module name="MethodLength"/>
+ <module name="MethodLength">
+ <property name="max" value="155"/>
+ </module>
<module name="ParameterNumber"/>