Generated by
JDiff

Class com.google.common.io.Files

Changed Methods
T extends Object readBytes(File, ByteProcessor<T>) Change in return type from T to (T extends Object).
Prefer {@code asByteSource(file).read(processor)}.
T extends Object readLines(File, Charset, LineProcessor<T>) Change in return type from T to (T extends Object).
Prefer {@code asCharSource(file, charset).readLines(callback)}.