Re: Needs Immutable Iterator

2018-02-25 Thread Jonathan Valliere
Thanks for the replies; I ended up figuring out a way to not require it. On Sat, Feb 24, 2018 at 9:42 PM Emmanuel Lécharny wrote: > > > Le 25/02/2018 à 00:59, Jonathan Valliere a écrit : > > Hi Everyone, > > > > Working on a couple of bugs and needed an Immutable Iterator.

Re: Needs Immutable Iterator

2018-02-24 Thread Emmanuel Lécharny
Le 25/02/2018 à 00:59, Jonathan Valliere a écrit : > Hi Everyone, > > Working on a couple of bugs and needed an Immutable Iterator. Is there an > Immutable Iterator in any of the existing dependencies or the codebase of > Mina that I should use instead of adding one. We don't have any

Re: Needs Immutable Iterator

2018-02-24 Thread Christoph John
What about Collections.unmodifiableList( list ).iterator() from JDK? Cheers, Chris. On 25/02/18 00:59, Jonathan Valliere wrote: Hi Everyone, Working on a couple of bugs and needed an Immutable Iterator. Is there an Immutable Iterator in any of the existing dependencies or the codebase of

Needs Immutable Iterator

2018-02-24 Thread Jonathan Valliere
Hi Everyone, Working on a couple of bugs and needed an Immutable Iterator. Is there an Immutable Iterator in any of the existing dependencies or the codebase of Mina that I should use instead of adding one. -J