You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by gg...@apache.org on 2003/07/26 00:40:36 UTC

cvs commit: jakarta-commons/codec/src/java/org/apache/commons/codec/binary Base64.java

ggregory    2003/07/25 15:40:36

  Modified:    codec/src/java/org/apache/commons/codec/binary Base64.java
  Log:
  Severity	Description	Resource	In Folder	Location	Creation Time
  	Unnecessary cast to type byte[] for expression of type byte[]	Base64.java	Apache Jakarta Commons/codec/src/java/org/apache/commons/codec/binary	line 275	July 23, 2003 11:22:45 AM
  
  Revision  Changes    Path
  1.5       +4 -4      jakarta-commons/codec/src/java/org/apache/commons/codec/binary/Base64.java
  
  Index: Base64.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/codec/src/java/org/apache/commons/codec/binary/Base64.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Base64.java	29 May 2003 23:03:28 -0000	1.4
  +++ Base64.java	25 Jul 2003 22:40:36 -0000	1.5
  @@ -272,7 +272,7 @@
        */
       public byte[] decode(byte[] pArray) throws DecoderException {
           byte[] result;
  -        result = decodeBase64((byte[]) pArray);
  +        result = decodeBase64(pArray);
           return (result);
       }
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org