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

/packages/apps/Email/emailcommon/src/org/apache/commons/io/
H A DIOUtils.java1208 * @param input1 the first stream
1215 public static boolean contentEquals(InputStream input1, InputStream input2) argument
1217 if (!(input1 instanceof BufferedInputStream)) {
1218 input1 = new BufferedInputStream(input1);
1224 int ch = input1.read();
1230 ch = input1.read();
1244 * @param input1 the first reader
1252 public static boolean contentEquals(Reader input1, Reader input2) argument
1254 if (!(input1 instanceo
[all...]

Completed in 31 milliseconds