Handle review comments

This commit is contained in:
Zachary Hensley 2019-02-22 10:55:20 -06:00
commit d812a4291c
5 changed files with 17 additions and 20 deletions

View file

@ -43,7 +43,7 @@ namespace std {
this();
java.util.ListIterator<$typemap(jboxtype, T)> it = listIterator(0);
// Special case the "copy constructor" here to avoid lots of cross-language calls
for (Object o : c) {
for (java.lang.Object o : c) {
it.add(($typemap(jboxtype, T))o);
}
}