Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/java.base/share/classes/java/text/Collator.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public abstract class Collator
* Collator strength value. When set, only SECONDARY and above differences are
* considered significant during comparison. The assignment of strengths
* to language features is locale dependent. A common example is for
* different accented forms of the same base letter ("a" vs "\u00E4") to be
* different accented forms of the same base letter ("a" vs "ä" (U+00E9)) to be
* considered a SECONDARY difference.
* @see java.text.Collator#setStrength
* @see java.text.Collator#getStrength
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ public synchronized CollationKey getCollationKey(String source)
// Here's a hypothetical example, with the collation element represented as
// a three-digit number, one digit for primary, one for secondary, etc.
//
// String: A a B \u00e9 <--(e-acute)
// String: A a B é (U+00E9, e-acute)
// Collation Elements: 101 100 201 510
//
// Collation Key: 1125<null>0001<null>1010
Expand Down
8 changes: 4 additions & 4 deletions src/java.base/share/classes/java/util/LocaleISOData.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class LocaleISOData {
+ "mt" + "mlt" // Maltese
+ "my" + "mya" // Burmese
+ "na" + "nau" // Nauru
+ "nb" + "nob" // Norwegian Bokm\u00e5l
+ "nb" + "nob" // Norwegian Bokmål
+ "nd" + "nde" // North Ndebele
+ "ne" + "nep" // Nepali
+ "ng" + "ndo" // Ndonga
Expand Down Expand Up @@ -209,7 +209,7 @@ class LocaleISOData {
+ "uz" + "uzb" // Uzbek
+ "ve" + "ven" // Venda
+ "vi" + "vie" // Vietnamese
+ "vo" + "vol" // Volap\u00fck
+ "vo" + "vol" // Volapük
+ "wa" + "wln" // Walloon
+ "wo" + "wol" // Wolof
+ "xh" + "xho" // Xhosa
Expand Down Expand Up @@ -250,7 +250,7 @@ class LocaleISOData {
+ "BH" + "BHR" // Bahrain, Kingdom of
+ "BI" + "BDI" // Burundi, Republic of
+ "BJ" + "BEN" // Benin, People's Republic of
+ "BL" + "BLM" // Saint Barth\u00e9lemy
+ "BL" + "BLM" // Saint Barthélemy
+ "BM" + "BMU" // Bermuda
+ "BN" + "BRN" // Brunei Darussalam
+ "BO" + "BOL" // Bolivia, Plurinational State of
Expand Down Expand Up @@ -278,7 +278,7 @@ class LocaleISOData {
// + "CS" + "SCG" // Serbia and Montenegro
+ "CU" + "CUB" // Cuba, Republic of
+ "CV" + "CPV" // Cape Verde, Republic of
+ "CW" + "CUW" // Cura\u00e7ao
+ "CW" + "CUW" // Curaçao
+ "CX" + "CXR" // Christmas Island
+ "CY" + "CYP" // Cyprus, Republic of
+ "CZ" + "CZE" // Czech Republic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* risk. This code and its internal interfaces are subject to change
* or deletion without notice.</b></p>
*
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*/
public final class JavacTool implements JavaCompiler {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* risk. This code and its internal interfaces are subject to change
* or deletion without notice.</b></p>
*
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*/
public class PropagatedException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
/**
* Converts values to {@link java.net.InetAddress} using {@link InetAddress#getByName(String) getByName}.
*
* @author <a href="mailto:r@ymund.de">Raymund F\u00FCl\u00F6p</a>
* @author <a href="mailto:r@ymund.de">Raymund Fülöp</a>
*/
public class InetAddressConverter implements ValueConverter<InetAddress> {
public InetAddress convert( String value ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/*
*
* @summary Check getEnclosingClass and other methods
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*
* a) Top level classes
* b) Nested classes (static member classes)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @modules jdk.compiler
* @run testng/othervm EnclosingClassTest
* @summary Check getEnclosingClass and other methods
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*/

import java.io.BufferedReader;
Expand Down Expand Up @@ -206,4 +206,3 @@ private void test(Object tests) {
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/*
* @summary Check getEnclosingClass and other methods
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*/

package common;
Expand Down
2 changes: 1 addition & 1 deletion test/jdk/java/util/Collections/T5078378.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 5078378
* @summary REGRESSION: Some calls to Collections.binarySearch no longer compile
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*
* @compile T5078378.java
* @compile/fail -Xlint:unchecked -Werror T5078378.java
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/6330920/T6330920.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 6330920
* @summary Verify that javac doesn't duplicate method error on method with error
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T6330920.out -XDrawDiagnostics T6330920.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/6457284/T6457284.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6457284
* @summary Internationalize "unnamed package" when the term is used in diagnostics
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @modules jdk.compiler/com.sun.tools.javac.api
* jdk.compiler/com.sun.tools.javac.util
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6399361
* @summary java.lang.Override specification should be revised
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile InterfaceImplements.java
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6399361
* @summary java.lang.Override specification should be revised
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile InterfaceOverride.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/OverrideChecks/Private.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 6399361
* @summary java.lang.Override specification should be revised
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=Private.out -XDrawDiagnostics Private.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/OverrideChecks/T6326485.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6326485
* @summary Compiler does not enforce rule that interfaces may not use Override annotation
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile T6326485.java
*/

Expand Down
3 changes: 1 addition & 2 deletions test/langtools/tools/javac/T4093617/T4093617.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
* @test
* @bug 4093617
* @summary Object has no superclass
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/module=java.base/fail/ref=T4093617.out -XDrawDiagnostics java/lang/Object.java
*/

2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T4848619/T4848619a.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 4848619
* @summary static final variable declared after use and self initialized
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T4848619a.out -XDrawDiagnostics T4848619a.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T4848619/T4848619b.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 4848619
* @summary static final variable declared after use and self initialized
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T4848619b.out -XDrawDiagnostics T4848619b.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T4994049/DeprecatedYES.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 6229758
* @summary deprecatedNOT! is
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile -Xlint:deprecation DeprecatedYES.java
* @compile/fail/ref=DeprecatedYES.out -XDrawDiagnostics -Werror -Xlint:deprecation DeprecatedYES.java
*/
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T4994049/T4994049.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 4994049
* @summary Improved diagnostics while parsing enums
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T4994049.out -XDrawDiagnostics T4994049.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T5003235/T5003235a.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 5003235
* @summary Private inner class accessible from subclasses
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T5003235a.out -XDrawDiagnostics T5003235a.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T5003235/T5003235b.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 5003235
* @summary Accessibility of private inner class
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T5003235b.out -XDrawDiagnostics T5003235b.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T5003235/T5003235c.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 5003235
* @summary Access to private inner classes
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T5003235c.out -XDrawDiagnostics T5003235c.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T5092545.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 5092545
* @summary Assertion failed in javac (ClassWriter.java:513)
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*/

interface A { void g(); }
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T5105890.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 5105890
* @summary (codegen) constant folding broken for conditional operator
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*/

public class T5105890 {
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T6180021/AbstractSub.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6180021
* @summary CompletionFailure during TypeTrans
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile Super.java
* @clean Missing
* @compile AbstractSub.java
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T6180021/Sub.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6180021
* @summary CompletionFailure during TypeTrans
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile Super.java
* @clean Missing
* @compile Sub.java
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T6231246/T6231246.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6231246
* @summary Javac crash with -g:none
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile -g:none T6231246.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T6231847.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 6231847
* @summary Crash in com.sun.tools.javac.comp.Attr.visitNewClass:1352
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T6231847.out -XDdev -XDrawDiagnostics T6231847.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T6266772.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6266772
* @summary javac crashes, assertion failure in Lower.java
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
*/

public class T6266772 {
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/T6407257.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 6407257
* @summary javac locks up when encountering cyclic inheritance
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=T6407257.out -XDrawDiagnostics T6407257.java
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 6393539
* @summary no compile-time error for clone, etc. in annotation type
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=NoAnnotationMethods.out -XDrawDiagnostics NoAnnotationMethods.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/annotations/neg/NoClone.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 6393539
* @summary no compile-time error for clone, etc. in annotation type
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=NoClone.out -XDrawDiagnostics NoClone.java
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @test /nodynamiccopyright/
* @bug 6393539
* @summary no compile-time error for clone, etc. in annotation type
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile/fail/ref=NoObjectMethods.out -XDrawDiagnostics NoObjectMethods.java
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6393539
* @summary no compile-time error for clone, etc. in annotation type
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @compile AnnotationMethods.java
*/

Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/api/6400303/T6400303.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6400303
* @summary REGRESSION: javadoc crashes in b75
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @modules jdk.compiler/com.sun.tools.javac.api
* jdk.compiler/com.sun.tools.javac.code
* jdk.compiler/com.sun.tools.javac.comp
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/api/6410643/T6410643.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6410643
* @summary JSR 199: The method JavaCompilerTool.run fails to handle null arguments
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @library ../lib
* @modules java.compiler
* jdk.compiler
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/api/6411310/T6411310.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6411310
* @summary JSR 199: FileObject should support user-friendly names via getName()
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @library ../lib
* @modules java.compiler
* jdk.compiler
Expand Down
2 changes: 1 addition & 1 deletion test/langtools/tools/javac/api/6411333/T6411333.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @test
* @bug 6411333 6400208 6400225 6400267
* @summary Ensure 6400208, 6400225, and 6400267 are tested
* @author Peter von der Ah\u00e9
* @author Peter von der Ahé
* @library ../lib
* @modules java.compiler
* jdk.compiler
Expand Down
Loading