1 Reply Latest reply on Nov 20, 2007 11:37 AM by peterj

    The field Priority.debug is deprecated

    theneo

      i have this warning is a bean i wrote The field Priority.debug is deprecated.

      What should i do?

        • 1. Re: The field Priority.debug is deprecated
          peterj

          "deprecated" means that the feature you are using (the debug field in the Priority class, in your case) is no longer the preferred way of accessing this information and at some future time might no longer be allowed, but at this time the feature still works. As an example, there are many things that have been deprecated since Java 1.1 that still work.

          Your choices are:

          a) ignore the warning

          b) change you code to use the preferred mechanisms (the documentation for the debug field should say what replaced it)