You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by vd...@apache.org on 2003/11/20 09:34:33 UTC

cvs commit: xml-security/src/org/apache/xml/security/keys ContentHandlerAlreadyRegisteredException.java

vdkoogh     2003/11/20 00:34:33

  Modified:    src/org/apache/xml/security/keys
                        ContentHandlerAlreadyRegisteredException.java
  Log:
  msgID and originalException were hiding the members in the superclass.
  
  CVS: ----------------------------------------------------------------------
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  Changes    Path
  1.2       +14 -14    xml-security/src/org/apache/xml/security/keys/ContentHandlerAlreadyRegisteredException.java
  
  Index: ContentHandlerAlreadyRegisteredException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/keys/ContentHandlerAlreadyRegisteredException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ContentHandlerAlreadyRegisteredException.java	1 Oct 2001 08:36:09 -0000	1.1
  +++ ContentHandlerAlreadyRegisteredException.java	20 Nov 2003 08:34:33 -0000	1.2
  @@ -82,43 +82,43 @@
      /**
       * Constructor ContentHandlerAlreadyRegisteredException
       *
  -    * @param msgID
  +    * @param _msgID
       */
  -   public ContentHandlerAlreadyRegisteredException(String msgID) {
  -      super(msgID);
  +   public ContentHandlerAlreadyRegisteredException(String _msgID) {
  +      super(_msgID);
      }
   
      /**
       * Constructor ContentHandlerAlreadyRegisteredException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       */
  -   public ContentHandlerAlreadyRegisteredException(String msgID,
  +   public ContentHandlerAlreadyRegisteredException(String _msgID,
              Object exArgs[]) {
  -      super(msgID, exArgs);
  +      super(_msgID, exArgs);
      }
   
      /**
       * Constructor ContentHandlerAlreadyRegisteredException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param originalException
       */
  -   public ContentHandlerAlreadyRegisteredException(String msgID,
  -           Exception originalException) {
  -      super(msgID, originalException);
  +   public ContentHandlerAlreadyRegisteredException(String _msgID,
  +           Exception _originalException) {
  +      super(_msgID, _originalException);
      }
   
      /**
       * Constructor ContentHandlerAlreadyRegisteredException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       * @param originalException
       */
  -   public ContentHandlerAlreadyRegisteredException(String msgID,
  -           Object exArgs[], Exception originalException) {
  -      super(msgID, exArgs, originalException);
  +   public ContentHandlerAlreadyRegisteredException(String _msgID,
  +           Object exArgs[], Exception _originalException) {
  +      super(_msgID, exArgs, _originalException);
      }
   }