Clean up some TODOs

This commit is contained in:
Ben Gruver
2013-04-30 21:28:18 -07:00
parent d8d16fd844
commit 936cc551f7
12 changed files with 50 additions and 28 deletions

View File

@ -79,7 +79,6 @@ public class CollectionUtils {
for (T element1: it1) {
T element2;
try {
// TODO: would checking hasNext be more efficient?
element2 = elements2.next();
} catch (NoSuchElementException ex) {
return 1;

View File

@ -31,7 +31,6 @@ package org.jf.util;
import java.io.IOException;
import java.io.Writer;
// TODO: add a write(String) method that doesn't scan for embedded newlines?
public class IndentingWriter extends Writer {
protected final Writer writer;
protected final char[] buffer = new char[24];