diff options
Diffstat (limited to 'tests/methods/iterator.vala')
-rw-r--r-- | tests/methods/iterator.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/methods/iterator.vala b/tests/methods/iterator.vala index 68d573e35..d2ee2dcc6 100644 --- a/tests/methods/iterator.vala +++ b/tests/methods/iterator.vala @@ -3,7 +3,7 @@ class Foo { class FooIterator { bool called = false; - + public bool next () { return !called; } @@ -23,7 +23,7 @@ class FooCollection { class FooIterator2 { bool called = false; - + public Foo? next_value () { if (called) return null; |