diff --git a/docs/engine.html b/docs/engine.html index a4c4ba836..ef52a9606 100644 --- a/docs/engine.html +++ b/docs/engine.html @@ -281,7 +281,7 @@

Modifiers

Checks that the order of modifiers conforms to the suggestions in the Java Language specification, sections 8.1.1, 8.3.1 and 8.4.3. The correct order is public protected private abstract static final transient volatile synchronized native strictfp.

-

Checks that method declarations in interfaces do not include the public modifier, see the Java Language specification, section 9.4.

+

Checks that method declarations in interfaces do not include the public or abstract modifiers, see the Java Language specification, section 9.4.

Visibility Modifiers

Checks for data members that are not declared private. Also finds static non-final data members that are not declared as private.

diff --git a/docs/releasenotes.html b/docs/releasenotes.html index d0e0753d0..92fd389ae 100644 --- a/docs/releasenotes.html +++ b/docs/releasenotes.html @@ -53,6 +53,7 @@
  • Added ability to specify a properties file on the command line (request 557544).
  • Check for whitespace around "{" and "}" (request 557544).
  • Fix Javadoc errors under JDK 1.4 (request 568553).
  • +
  • Detect redundant abstract modifier in interfaces (request 573485).