0 Replies Latest reply on Feb 25, 2003 6:06 AM by blowagie

    bugfix ObjectCallback

    blowagie

      Hello,

      it's a little, silly, meaningless, non-critical bug,
      but I report it anyway.

      There is a typo in the constructor of class
      org.jboss.security.auth.callback.ObjectCallback,

      /** Initialize the SecurityAssociationCallback
      */
      public ObjectCallback(String propmpt)
      {
      this.prompt = prompt;
      }

      It should be prompt in propmpt.
      It compiles because prompt is a member-variable.
      What happens is just this.prompt = this.prompt
      instead of this.prompt = propmpt;

      Bruno