public void write()

in chill-java/src/main/java/com/twitter/chill/Base64.java [1980:1992]


        public void write( byte[] theBytes, int off, int len )
        throws java.io.IOException {
            // Encoding suspended?
            if( suspendEncoding ) {
                this.out.write( theBytes, off, len );
                return;
            }   // end if: supsended

            for( int i = 0; i < len; i++ ) {
                write( theBytes[ off + i ] );
            }   // end for: each byte written

        }   // end write