Generated by
JDiff

Class com.google.common.io.CharStreams

Removed Methods
CharSource asCharSource(String) Returns a CharSource that reads the given string value.
 

Changed Methods
CharSink asCharSink(OutputSupplier<? extends Appendable>) Now deprecated.
Convert all {@code OutputSupplier
OutputSupplier<OutputStreamWriter> newWriterSupplier(OutputSupplier<?, extends, OutputStream>, Charset) Now deprecated.
Use {@link ByteSink#asCharSink(Charset)} instead.
String readFirstLine(InputSupplier<R>) Now deprecated.
Use {@link CharSource#readFirstLine()} instead.
void write(CharSequence, OutputSupplier<W>) Now deprecated.
Use {@link CharSink#write(CharSequence)} instead.
CharSource asCharSource(InputSupplier<? extends Readable>) Now deprecated.
Convert all {@code InputSupplier
long copy(InputSupplier<R>, OutputSupplier<W>) Now deprecated.
Use {@link CharSource#copyTo(CharSink) instead.
long copy(InputSupplier<R>, Appendable) Now deprecated.
Use {@link CharSource#copyTo(Appendable)} instead.
InputSupplier<Reader> join(InputSupplier[]) Now deprecated.
Use {@link CharSource#concat(CharSource[])} instead.
InputSupplier<Reader> join(Iterable<? extends InputSupplier<? extends Reader>>) Now deprecated.
Use {@link CharSource#concat(Iterable)} instead.
InputSupplier<InputStreamReader> newReaderSupplier(InputSupplier<?, extends, InputStream>, Charset) Now deprecated.
Use {@link ByteSource#asCharSource(Charset)} instead.
InputSupplier<StringReader> newReaderSupplier(String) Now deprecated.
Use {@link CharSource#wrap(CharSequence}} instead.
T readLines(InputSupplier<R>, LineProcessor<T>) Now deprecated.
Use {@link CharSource#readLines(LineProcessor)} instead.
List<String> readLines(InputSupplier<R>) Now deprecated.
Use {@link CharSource#readLines()} instead, but note that it returns an {@code ImmutableList}.
String toString(InputSupplier<R>) Now deprecated.
Use {@link CharSource#read()} instead.