/[classpath]/classpath/gnu/java/net/BASE64.java
ViewVC logotype

Diff of /classpath/gnu/java/net/BASE64.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.1 by gnu_andrew, Sun Jan 16 15:15:08 2005 UTC revision 1.1.2.2 by gnu_andrew, Sun Mar 13 14:38:31 2005 UTC
# Line 1  Line 1 
1  /* BASE.java --  /* BASE.java --
2     Copyright (C) 2003, 2004 Free Software Foundation, Inc.     Copyright (C) 2003, 2004, 2005  Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 109  public final class BASE64 Line 109  public final class BASE64
109              bt[ti++] = src[b3 & 0x3f];              bt[ti++] = src[b3 & 0x3f];
110            }            }
111        }        }
112         if (ti < bt.length)
113          {
114            byte[] tmp = new byte[ti];
115            System.arraycopy(bt, 0, tmp, 0, ti);
116            bt = tmp;
117          }
118      /*while (ti < bt.length)      /*while (ti < bt.length)
119        {        {
120          bt[ti++] = 0x3d;          bt[ti++] = 0x3d;

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26