Constructs a Base64.OutputStream in ENCODE mode. @param out the java.io.OutputStream to which data will be written. @since 1.3
( java.io.OutputStream out )
| 1859 | * @since 1.3 |
| 1860 | */ |
| 1861 | public OutputStream( java.io.OutputStream out ) { |
| 1862 | this( out, ENCODE ); |
| 1863 | } // end constructor |
| 1864 | |
| 1865 | |
| 1866 | /** |
nothing calls this directly
no test coverage detected