Constructs a Base64.InputStream in DECODE mode. @param in the java.io.InputStream from which to read data. @since 1.3
( java.io.InputStream in )
| 1646 | * @since 1.3 |
| 1647 | */ |
| 1648 | public InputStream( java.io.InputStream in ) { |
| 1649 | this( in, DECODE ); |
| 1650 | } // end constructor |
| 1651 | |
| 1652 | |
| 1653 | /** |
nothing calls this directly
no test coverage detected