--- old/test/jdk/javadoc/doclet/testTypeAnnotations/typeannos/Throws.java 2016-02-13 21:45:06.663545672 -0800 +++ new/test/jdk/javadoc/doclet/testTypeAnnotations/typeannos/Throws.java 2016-02-13 21:45:06.563545669 -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 @@ -40,7 +40,7 @@ class ThrWithValue { void oneException() throws @ThrB("m") Exception {} - void twoExceptions() throws @ThrB(value="m") RuntimeException, @ThrA Exception {} + void twoExceptions() throws @ThrB("m") RuntimeException, @ThrA Exception {} } @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})