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:31:34 UTC

cvs commit: xml-security/src/org/apache/xml/security/c14n InvalidCanonicalizerException.java CanonicalizationException.java

vdkoogh     2003/11/20 00:31:34

  Modified:    src/org/apache/xml/security/c14n
                        InvalidCanonicalizerException.java
                        CanonicalizationException.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       +10 -10    xml-security/src/org/apache/xml/security/c14n/InvalidCanonicalizerException.java
  
  Index: InvalidCanonicalizerException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/c14n/InvalidCanonicalizerException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- InvalidCanonicalizerException.java	1 Oct 2001 08:36:09 -0000	1.1
  +++ InvalidCanonicalizerException.java	20 Nov 2003 08:31:34 -0000	1.2
  @@ -83,8 +83,8 @@
       *
       * @param msgID
       */
  -   public InvalidCanonicalizerException(String msgID) {
  -      super(msgID);
  +   public InvalidCanonicalizerException(String _msgID) {
  +      super(_msgID);
      }
   
      /**
  @@ -93,8 +93,8 @@
       * @param msgID
       * @param exArgs
       */
  -   public InvalidCanonicalizerException(String msgID, Object exArgs[]) {
  -      super(msgID, exArgs);
  +   public InvalidCanonicalizerException(String _msgID, Object exArgs[]) {
  +      super(_msgID, exArgs);
      }
   
      /**
  @@ -103,9 +103,9 @@
       * @param msgID
       * @param originalException
       */
  -   public InvalidCanonicalizerException(String msgID,
  -                                        Exception originalException) {
  -      super(msgID, originalException);
  +   public InvalidCanonicalizerException(String _msgID,
  +                                        Exception _originalException) {
  +      super(_msgID, _originalException);
      }
   
      /**
  @@ -115,8 +115,8 @@
       * @param exArgs
       * @param originalException
       */
  -   public InvalidCanonicalizerException(String msgID, Object exArgs[],
  -                                        Exception originalException) {
  -      super(msgID, exArgs, originalException);
  +   public InvalidCanonicalizerException(String _msgID, Object exArgs[],
  +                                        Exception _originalException) {
  +      super(_msgID, exArgs, _originalException);
      }
   }
  
  
  
  1.2       +9 -9      xml-security/src/org/apache/xml/security/c14n/CanonicalizationException.java
  
  Index: CanonicalizationException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/c14n/CanonicalizationException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CanonicalizationException.java	1 Oct 2001 08:36:09 -0000	1.1
  +++ CanonicalizationException.java	20 Nov 2003 08:31:34 -0000	1.2
  @@ -84,8 +84,8 @@
       *
       * @param msgID
       */
  -   public CanonicalizationException(String msgID) {
  -      super(msgID);
  +   public CanonicalizationException(String _msgID) {
  +      super(_msgID);
      }
   
      /**
  @@ -94,8 +94,8 @@
       * @param msgID
       * @param exArgs
       */
  -   public CanonicalizationException(String msgID, Object exArgs[]) {
  -      super(msgID, exArgs);
  +   public CanonicalizationException(String _msgID, Object exArgs[]) {
  +      super(_msgID, exArgs);
      }
   
      /**
  @@ -104,8 +104,8 @@
       * @param msgID
       * @param originalException
       */
  -   public CanonicalizationException(String msgID, Exception originalException) {
  -      super(msgID, originalException);
  +   public CanonicalizationException(String _msgID, Exception _originalException) {
  +      super(_msgID, _originalException);
      }
   
      /**
  @@ -115,8 +115,8 @@
       * @param exArgs
       * @param originalException
       */
  -   public CanonicalizationException(String msgID, Object exArgs[],
  -                                    Exception originalException) {
  -      super(msgID, exArgs, originalException);
  +   public CanonicalizationException(String _msgID, Object exArgs[],
  +                                    Exception _originalException) {
  +      super(_msgID, exArgs, _originalException);
      }
   }