Toggle navigation
Home
com.google.common.io.ByteSource to com.google.common.io.InputSupplier<java.io.InputStream>
No. of Instances - 2
No. of Commits - 2
No. of Projects - {'j2objc'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Similar)
ByteSource
to
InputSupplier<InputStream>
ByteSource
to
InputSupplier<InputStream>
Add or Remove Method invocation
openInputStream()
to
openStream()
openInputStream()
to
openStream()
Update Anonymous class
{ @Override public InputStream openStream() throws IOException { return openInputStream(); } @Override protected void finalize(){ try { reset(); } catch ( Throwable t) { t.printStackTrace(System.err); } } }
to
{ @Override public InputStream getInput() throws IOException { return openStream(); } @Override protected void finalize(){ try { reset(); } catch ( Throwable t) { t.printStackTrace(System.err); } } }
{ @Override public InputStream openStream() throws IOException { return openInputStream(); } @Override protected void finalize(){ try { reset(); } catch ( Throwable t) { t.printStackTrace(System.err); } } }
to
{ @Override public InputStream getInput() throws IOException { return openStream(); } @Override protected void finalize(){ try { reset(); } catch ( Throwable t) { t.printStackTrace(System.err); } } }
Rename Variable
source
to
supplier
source
to
supplier