Searched refs:input1 (Results 1 - 2 of 2) 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...]
H A DFileUtils.java441 InputStream input1 = null;
444 input1 = new FileInputStream(file1);
446 return IOUtils.contentEquals(input1, input2);
449 IOUtils.closeQuietly(input1);

Completed in 78 milliseconds