ExcerptInputStream.java | 14 * A marker that's appended to the excerpt if it's less than the complete 24 while ((read = read(excerpt, total, LIMIT - total)) != -1 && ((total += read) < LIMIT)); 27 System.arraycopy(ELLIPSIS, 0, excerpt, total, ELLIPSIS.length); 30 System.arraycopy(excerpt, 0, tmp, 0, total); 31 excerpt = tmp; 37 private byte[] excerpt = new byte[LIMIT + ELLIPSIS.length]; field in class:ExcerptInputStream 42 return excerpt;
|