7059905: (javadoc) promote method visibility for netbeans usage

Reviewed-by: jjg, bpatel
This commit is contained in:
Kumar Srinivasan 2011-06-30 14:33:45 -07:00
parent 00fd0bdcfd
commit 37aa419c8a
7 changed files with 29 additions and 29 deletions

View file

@ -92,7 +92,7 @@ public abstract class DocImpl implements Doc, Comparable<Object> {
* So subclasses have the option to do lazy initialization of
* "documentation" string.
*/
String documentation() {
protected String documentation() {
if (documentation == null) documentation = "";
return documentation;
}