--- old/test/jdk/javadoc/doclet/testTypeAnnotations/typeannos/Wildcards.java 2016-02-13 21:45:07.015545682 -0800 +++ new/test/jdk/javadoc/doclet/testTypeAnnotations/typeannos/Wildcards.java 2016-02-13 21:45:06.927545680 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2016, 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 @@ -39,10 +39,10 @@ class BoundWithValue { void wcExtends(MyList l) { } - void wcSuper(MyList l) { } + void wcSuper(MyList l) { } MyList returnWcExtends() { return null; } - MyList returnWcSuper() { return null; } + MyList returnWcSuper() { return null; } MyList> complex() { return null; } } @@ -57,10 +57,10 @@ class SelfWithValue { void wcExtends(MyList<@WldB("m") ?> l) { } - void wcSuper(MyList<@WldB(value="m") ?> l) { } + void wcSuper(MyList<@WldB("m") ?> l) { } MyList<@WldB("m") ?> returnWcExtends() { return null; } - MyList<@WldB(value="m") ?> returnWcSuper() { return null; } + MyList<@WldB("m") ?> returnWcSuper() { return null; } MyList<@WldB("m") ? extends MyList<@WldB("m") ? super String>> complex() { return null; } }