336337338339340341342343344345346
return null; } InputStream input = new BufferedInputStream(new FileInputStream(log)); if (count >= 0) { return new LimitedInputStream(input, from, count); } else { return input; } }