# HG changeset patch # Parent cbc5f0fe29a7a3d312a0971a6a0a7f0b055a8523 diff -r cbc5f0fe29a7 -r 1f2ee48bc23b src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java --- a/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java Fri Aug 12 22:50:05 2016 +0200 +++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java Thu Aug 18 09:17:32 2016 +0200 @@ -60,7 +60,6 @@ import static com.sun.tools.javac.code.TypeTag.WILDCARD; import static com.sun.tools.javac.tree.JCTree.Tag.*; -import com.sun.tools.javac.util.Log.DeferredDiagnosticHandler; /** Type checking helper class for the attribution phase. * @@ -3589,28 +3588,7 @@ } @Override public void visitExports(JCExports tree) { - if (tree.getModuleNames() != null) { - List names = tree.getModuleNames(); - List modules = tree.directive.modules; - while (modules.nonEmpty()) { - DeferredDiagnosticHandler diag = new DeferredDiagnosticHandler(log); - try { - modules.head.complete(); - } finally { - log.popDiagnosticHandler(diag); - if (!diag.getDiagnostics().isEmpty()) { - modules.head.completer = sym -> { - for (JCDiagnostic d : diag.getDiagnostics()) { - log.report(d); - } - }; - } - } - checkDeprecated(names.head.pos(), msym, modules.head); - names = names.tail; - modules = modules.tail; - } - } + //qualified exports should not produce the deprecated warning } @Override public void visitUses(JCUses that) { diff -r cbc5f0fe29a7 -r 1f2ee48bc23b test/tools/javac/modules/AnnotationsOnModules.java --- a/test/tools/javac/modules/AnnotationsOnModules.java Fri Aug 12 22:50:05 2016 +0200 +++ b/test/tools/javac/modules/AnnotationsOnModules.java Thu Aug 18 09:17:32 2016 +0200 @@ -241,9 +241,7 @@ if (suppress.isEmpty()) { expected = Arrays.asList( "module-info.java:2:14: compiler.warn.has.been.deprecated.module: m1", - "module-info.java:3:20: compiler.warn.has.been.deprecated.module: m1", - "module-info.java:3:24: compiler.warn.has.been.deprecated.module: m2", - "3 warnings"); + "1 warning"); } else { expected = Arrays.asList(""); }