# HG changeset patch # User lana # Date 1493327767 0 # Node ID af62fa3a3a89b65349c4a2194806655910043e95 # Parent 7e0ac3c3eaba1028c978b52d9605767b2a79f493# Parent 29001eb39fd8f5b0f5773053838a166d037a4773 Merge diff -r 7e0ac3c3eaba -r af62fa3a3a89 src/java.compiler/share/classes/javax/lang/model/element/ModuleElement.java --- a/src/java.compiler/share/classes/javax/lang/model/element/ModuleElement.java Thu Apr 27 16:07:59 2017 +0000 +++ b/src/java.compiler/share/classes/javax/lang/model/element/ModuleElement.java Thu Apr 27 21:16:07 2017 +0000 @@ -154,7 +154,7 @@ * pattern. Classes implementing this interface are used to operate * on a directive when the kind of directive is unknown at compile time. * When a visitor is passed to a directive's {@link Directive#accept - * accept} method, the visitXyz method applicable + * accept} method, the visitXyz method applicable * to that directive is invoked. * *

Classes implementing this interface may or may not throw a diff -r 7e0ac3c3eaba -r af62fa3a3a89 src/java.compiler/share/classes/javax/tools/JavaFileManager.java --- a/src/java.compiler/share/classes/javax/tools/JavaFileManager.java Thu Apr 27 16:07:59 2017 +0000 +++ b/src/java.compiler/share/classes/javax/tools/JavaFileManager.java Thu Apr 27 21:16:07 2017 +0000 @@ -70,7 +70,7 @@ * java.io.File#getCanonicalFile} or similar means. If the system is * not case-aware, file objects must use other means to preserve case. * - *

Relative names: some + *

Relative names: some * methods in this interface use relative names. A relative name is a * non-null, non-empty sequence of path segments separated by '/'. * '.' or '..' are invalid path segments. A valid relative name must diff -r 7e0ac3c3eaba -r af62fa3a3a89 src/jdk.compiler/share/classes/com/sun/source/doctree/DocTreeVisitor.java --- a/src/jdk.compiler/share/classes/com/sun/source/doctree/DocTreeVisitor.java Thu Apr 27 16:07:59 2017 +0000 +++ b/src/jdk.compiler/share/classes/com/sun/source/doctree/DocTreeVisitor.java Thu Apr 27 21:16:07 2017 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -31,7 +31,7 @@ * Classes implementing this interface are used to operate * on a tree when the kind of tree is unknown at compile time. * When a visitor is passed to an tree's {@link DocTree#accept - * accept} method, the visitXYZ method most applicable + * accept} method, the visitXyz method most applicable * to that tree is invoked. * *

Classes implementing this interface may or may not throw a diff -r 7e0ac3c3eaba -r af62fa3a3a89 src/jdk.compiler/share/classes/com/sun/source/tree/LambdaExpressionTree.java --- a/src/jdk.compiler/share/classes/com/sun/source/tree/LambdaExpressionTree.java Thu Apr 27 16:07:59 2017 +0000 +++ b/src/jdk.compiler/share/classes/com/sun/source/tree/LambdaExpressionTree.java Thu Apr 27 21:16:07 2017 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -41,7 +41,7 @@ /** * Lambda expressions come in two forms: - *