Calling remove on an iterator from list within an request factory entity 
proxy results in an UnsupportedOperationException.

I have isolated it to commit 288cc03 Hide Java 8 interfaces methods to 
generators. If I revert that commit it works properly. Seems like it is 
picking up the wrong implementation of iterator.remove() when it generates 
the proxies.


Iterator<SomeProxy> iterator = someEntityProxy.getSomeList().iterator();
iterator.next();
iterator.remove(); //throws UnsupportedOperationException

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/8e29fcb6-4286-40b4-a093-bbc4d2236edb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to