Searched defs:input1 (Results 1 - 1 of 1) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DIOUtils.java1211 * @param input1 the first stream
1218 public static boolean contentEquals(InputStream input1, InputStream input2) argument
1220 if (!(input1 instanceof BufferedInputStream)) {
1221 input1 = new BufferedInputStream(input1);
1227 int ch = input1.read();
1233 ch = input1.read();
1247 * @param input1 the first reader
1255 public static boolean contentEquals(Reader input1, Reader input2) argument
1257 if (!(input1 instanceo
[all...]

Completed in 55 milliseconds