--- old/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner9.java 2017-01-10 18:35:07.351159698 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner9.java 2017-01-10 18:35:07.271199700 -0800 @@ -34,26 +34,26 @@ /** * A scanning visitor of program elements with default behavior * appropriate for the {@link SourceVersion#RELEASE_9 RELEASE_9} - * source version. The visitXYZ methods in this + * source version. The visitXyz methods in this * class scan their component elements by calling {@code scan} on * their {@linkplain Element#getEnclosedElements enclosed elements}, * {@linkplain ExecutableElement#getParameters parameters}, etc., as * indicated in the individual method specifications. A subclass can * control the order elements are visited by overriding the - * visitXYZ methods. Note that clients of a scanner + * visitXyz methods. Note that clients of a scanner * may get the desired behavior be invoking {@code v.scan(e, p)} rather * than {@code v.visit(e, p)} on the root objects of interest. * - *

When a subclass overrides a visitXYZ method, the + *

When a subclass overrides a visitXyz method, the * new method can cause the enclosed elements to be scanned in the - * default way by calling super.visitXYZ. In this + * default way by calling super.visitXyz. In this * fashion, the concrete visitor can control the ordering of traversal * over the component elements with respect to the additional * processing; for example, consistently calling - * super.visitXYZ at the start of the overridden + * super.visitXyz at the start of the overridden * methods will yield a preorder traversal, etc. If the component * elements should be traversed in some other order, instead of - * calling super.visitXYZ, an overriding visit method + * calling super.visitXyz, an overriding visit method * should call {@code scan} with the elements in the desired order. * *

Methods in this class may be overridden subject to their