diff --git a/src/xdocs/config_javadoc.xml b/src/xdocs/config_javadoc.xml index 57f288143..6a7aad342 100755 --- a/src/xdocs/config_javadoc.xml +++ b/src/xdocs/config_javadoc.xml @@ -406,7 +406,6 @@ public boolean isSomething() It can be extremely painful writing or duplicating Javadoc for a method required for an interface. Hence checkstyle supports using the convention of using a single @see or {@inheritDoc} tag instead of all the other tags. For example, if the above method was implementing a @@ -414,14 +413,6 @@ public boolean isSomething() com.puppycrawl.tools.checkstyle.Verifier interface, then the Javadoc could be done as: -
-/** @see com.puppycrawl.tools.checkstyle.Verifier **/
-public int checkReturnTag(final int aTagIndex,
-                          JavadocTag[] aTags,
-                          int aLineNo)
-            
- - or:
 /** {@inheritDoc} */
 public int checkReturnTag(final int aTagIndex,
diff --git a/src/xdocs/releasenotes.xml b/src/xdocs/releasenotes.xml
index cd95b5c47..56b22e86d 100755
--- a/src/xdocs/releasenotes.xml
+++ b/src/xdocs/releasenotes.xml
@@ -10,13 +10,24 @@
 
   
 
+    
+

Fixed Bugs:

+ + +
+

New features: