| Index: samples-dev/swarm/BiIterator.dart
|
| diff --git a/samples-dev/swarm/BiIterator.dart b/samples-dev/swarm/BiIterator.dart
|
| index a4df30defbd2357d2112b8a6099dfdc2edff4e04..b4bfce34a39a82eee5e8b48c42c4879ec190b5d3 100644
|
| --- a/samples-dev/swarm/BiIterator.dart
|
| +++ b/samples-dev/swarm/BiIterator.dart
|
| @@ -5,7 +5,6 @@ part of swarmlib;
|
| * a set of items. (Bi-directional)
|
| */
|
| class BiIterator<E> {
|
| -
|
| /**
|
| * Provides forward and backward iterator functionality to keep track
|
| * which item is currently selected.
|
| @@ -18,7 +17,7 @@ class BiIterator<E> {
|
| List<E> list;
|
|
|
| BiIterator(this.list, [List<ChangeListener> oldListeners = null])
|
| - : currentIndex = new ObservableValue<int>(0) {
|
| + : currentIndex = new ObservableValue<int>(0) {
|
| if (oldListeners != null) {
|
| currentIndex.listeners = oldListeners;
|
| }
|
|
|