aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorritchie <ritchie@gmx.at>2015-05-10 15:04:38 +0200
committerritchie <ritchie@gmx.at>2015-05-10 15:04:38 +0200
commit9c4e5f6d83e3a039caf3fec36372424e796e25e7 (patch)
tree70320b8ca879656be8cbcf77e07aa97f547fa976 /src
parent30fb85f55cbd8df3005e652da3781f51294baf90 (diff)
downloadnanohttpd-9c4e5f6d83e3a039caf3fec36372424e796e25e7.tar.gz
config and jacoco instead of cubertura
Diffstat (limited to 'src')
-rw-r--r--src/main/checkstyle/nanohttpd-style.xml20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/main/checkstyle/nanohttpd-style.xml b/src/main/checkstyle/nanohttpd-style.xml
index f751504..038ca32 100644
--- a/src/main/checkstyle/nanohttpd-style.xml
+++ b/src/main/checkstyle/nanohttpd-style.xml
@@ -15,10 +15,6 @@
<!-- If you set the basedir property below, then all reported file names will be relative to the specified directory. See http://checkstyle.sourceforge.net/5.x/config.html#Checker
<property name="basedir" value="${basedir}"/> -->
- <!-- Checks that a package-info.java file exists for each package. -->
- <!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage -->
- <module name="JavadocPackage" />
-
<!-- Checks whether files end with a new line. -->
<!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
<module name="NewlineAtEndOfFile" />
@@ -47,10 +43,18 @@
<!-- Checks for Javadoc comments. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
- <module name="JavadocMethod" />
- <module name="JavadocType" />
- <module name="JavadocVariable" />
- <module name="JavadocStyle" />
+ <module name="JavadocMethod" >
+ <property name="scope" value="protected" />
+ </module>
+ <module name="JavadocType" >
+ <property name="scope" value="protected" />
+ </module>
+ <module name="JavadocVariable" >
+ <property name="scope" value="protected" />
+ </module>
+ <module name="JavadocStyle" >
+ <property name="scope" value="protected" />
+ </module>
<!-- Checks for Naming Conventions. -->