Implementation of new generificationified writer functionality

This commit is contained in:
Ben Gruver
2013-04-27 22:23:30 -07:00
parent afc0a7d325
commit 1bf6f23245
78 changed files with 5297 additions and 3354 deletions

View File

@ -79,6 +79,7 @@ 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;