Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Unified Diff: samples-dev/swarm/BiIterator.dart

Issue 2828603002: Format samples and samples-dev directories. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samples-dev/swarm/App.dart ('k') | samples-dev/swarm/CannedData.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « samples-dev/swarm/App.dart ('k') | samples-dev/swarm/CannedData.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698