Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6404756

javac mishandles deprecation warnings on some elements marked deprecated

XMLWordPrintable

    • b89
    • generic
    • generic
    • Verified

      Work on 6392818 "Add isDeprecated to javax.lang.model.util.Elements" exposed a regression in javac's handling of deprecation messages:

      public class Test {
          public void foo(Foo f) {
      @Deprecated String s1 = f.foo;
      /** @deprecated */ String s2 = f.foo;
          }
      }

      class Foo {
          @Deprecated String foo;
      }

      A deprecation warning is *not* emitted for the use of f.foo to initialize s1. Local variables cannot meaningfully be deprecated so the anntotation should have no effect.

            jjg Jonathan Gibbons
            darcy Joe Darcy
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: