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

javac: /** @deprecated */ can leak out of a method body onto a subsequent declaration.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 6
    • 5.0
    • tools
    • b23
    • generic
    • generic
    • Verified

      If you put /** @deprecated */ on a local variable declaration without any modifiers, it will not be noticed, and will thereby persist until the next declaration that might notice it.

      For example, in the following example, Train.class will be marked deprecated:
      ---------------
      class Toy {
          void m() {
      /** @deprecated */
      int x = 1;

          }
      }

      class Train {
      }
      --------------------------


      However, if the declaration of x is marked final, the @deprecated flag
      will be seen and cleared. Thus, in this version, Train.class will NOT be
      marked deprecated:
      ---------------
      class Toy {
          void m() {
      /** @deprecated */
      final int x = 1;

          }
      }

      class Train {
      }
      --------------------------


      Verify results by compiling the two examples and checking the class file
      with a utility like jdec from the JCK team.
      ###@###.### 2005-1-03 19:20:05 GMT

            jjg Jonathan Gibbons
            jjg Jonathan Gibbons
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: