Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Wiki Markup
            Never use deprecated or obsolete methods or classes in new code. The Java SE 6 documentation provides a complete list of deprecated APIs \[[API 2006|AA. Bibliography#API 06]\]. 

The guideline [guidelines THI01-J. Do not invoke ThreadGroup methods] describes issues that can result from using deprecated and obsolete methods. methods and THI05-J. Do not use Thread.stop() to terminate threads describes issues that can result from using deprecated and obsolete methods.

Wiki Markup
The Java SE 6 documentation further indicates certain classes that are obsolete \[[API 2006|AA. Bibliography#API 06]\]. For example, the {{java.util.Dictionary}} class provides the same functionality as the {{Map}} interface. 

...