Changeset 12587 in josm for trunk/tools/checkstyle/src/org
- Timestamp:
- 2017-08-10T12:16:32+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/checkstyle/src/org/openstreetmap/josm/TopLevelJavadocCheck.java
r12586 r12587 72 72 73 73 private boolean hasProperText(DetailNode javadoc) { 74 if (javadoc == null) return false; 74 75 for (DetailNode child : javadoc.getChildren()) { 75 76 if (child.getType() == JavadocTokenTypes.TEXT) { … … 89 90 foundTopLevelClass = true; 90 91 if (!hasJavadoc(ast)) { 91 this.log(ast.getLineNo(), " no/incompleteJavadoc for top level class or interface");92 this.log(ast.getLineNo(), "incomplete or missing Javadoc for top level class or interface"); 92 93 } 93 94 }
Note:
See TracChangeset
for help on using the changeset viewer.