--- old/test/jdk/java/lang/annotation/TestConstructorParameterAnnotations.java 2019-06-03 13:22:58.330580698 -0700 +++ new/test/jdk/java/lang/annotation/TestConstructorParameterAnnotations.java 2019-06-03 13:22:58.010420710 -0700 @@ -129,21 +129,21 @@ @ExpectedGetParameterAnnotations( "[[], " + - "[@TestConstructorParameterAnnotations$MarkerAnnotation(value=1)]]") + "[@TestConstructorParameterAnnotations$MarkerAnnotation(1)]]") @ExpectedParameterAnnotations({ "null", - "@TestConstructorParameterAnnotations$MarkerAnnotation(value=1)"}) + "@TestConstructorParameterAnnotations$MarkerAnnotation(1)"}) public class NestedClass1 { public NestedClass1(@MarkerAnnotation(1) int parameter) {} } @ExpectedGetParameterAnnotations( "[[], " + - "[@TestConstructorParameterAnnotations$MarkerAnnotation(value=2)], " + + "[@TestConstructorParameterAnnotations$MarkerAnnotation(2)], " + "[]]") @ExpectedParameterAnnotations({ "null", - "@TestConstructorParameterAnnotations$MarkerAnnotation(value=2)", + "@TestConstructorParameterAnnotations$MarkerAnnotation(2)", "null"}) public class NestedClass2 { public NestedClass2(@MarkerAnnotation(2) int parameter1, @@ -152,11 +152,11 @@ @ExpectedGetParameterAnnotations( "[[], " + - "[@TestConstructorParameterAnnotations$MarkerAnnotation(value=3)], " + + "[@TestConstructorParameterAnnotations$MarkerAnnotation(3)], " + "[]]") @ExpectedParameterAnnotations({ "null", - "@TestConstructorParameterAnnotations$MarkerAnnotation(value=3)", + "@TestConstructorParameterAnnotations$MarkerAnnotation(3)", "null"}) public class NestedClass3 { public

NestedClass3(@MarkerAnnotation(3) P parameter1, @@ -165,11 +165,11 @@ @ExpectedGetParameterAnnotations( "[[], " + - "[@TestConstructorParameterAnnotations$MarkerAnnotation(value=4)], " + + "[@TestConstructorParameterAnnotations$MarkerAnnotation(4)], " + "[]]") @ExpectedParameterAnnotations({ "null", - "@TestConstructorParameterAnnotations$MarkerAnnotation(value=4)", + "@TestConstructorParameterAnnotations$MarkerAnnotation(4)", "null"}) public class NestedClass4 { public NestedClass4(@MarkerAnnotation(4) P parameter1, @@ -183,18 +183,18 @@ } @ExpectedGetParameterAnnotations( - "[[@TestConstructorParameterAnnotations$MarkerAnnotation(value=1)]]") + "[[@TestConstructorParameterAnnotations$MarkerAnnotation(1)]]") @ExpectedParameterAnnotations({ - "@TestConstructorParameterAnnotations$MarkerAnnotation(value=1)"}) + "@TestConstructorParameterAnnotations$MarkerAnnotation(1)"}) public static class StaticNestedClass1 { public StaticNestedClass1(@MarkerAnnotation(1) int parameter) {} } @ExpectedGetParameterAnnotations( - "[[@TestConstructorParameterAnnotations$MarkerAnnotation(value=2)], " + + "[[@TestConstructorParameterAnnotations$MarkerAnnotation(2)], " + "[]]") @ExpectedParameterAnnotations({ - "@TestConstructorParameterAnnotations$MarkerAnnotation(value=2)", + "@TestConstructorParameterAnnotations$MarkerAnnotation(2)", "null"}) public static class StaticNestedClass2 { public StaticNestedClass2(@MarkerAnnotation(2) int parameter1, @@ -202,10 +202,10 @@ } @ExpectedGetParameterAnnotations( - "[[@TestConstructorParameterAnnotations$MarkerAnnotation(value=3)], " + + "[[@TestConstructorParameterAnnotations$MarkerAnnotation(3)], " + "[]]") @ExpectedParameterAnnotations({ - "@TestConstructorParameterAnnotations$MarkerAnnotation(value=3)", + "@TestConstructorParameterAnnotations$MarkerAnnotation(3)", "null"}) public static class StaticNestedClass3 { public

StaticNestedClass3(@MarkerAnnotation(3) P parameter1, @@ -213,10 +213,10 @@ } @ExpectedGetParameterAnnotations( - "[[@TestConstructorParameterAnnotations$MarkerAnnotation(value=4)], " + + "[[@TestConstructorParameterAnnotations$MarkerAnnotation(4)], " + "[]]") @ExpectedParameterAnnotations({ - "@TestConstructorParameterAnnotations$MarkerAnnotation(value=4)", + "@TestConstructorParameterAnnotations$MarkerAnnotation(4)", "null"}) public static class StaticNestedClass4 { public StaticNestedClass4(@MarkerAnnotation(4) P parameter1,