summaryrefslogtreecommitdiff
path: root/gee/readonlyset.vala
diff options
context:
space:
mode:
Diffstat (limited to 'gee/readonlyset.vala')
-rw-r--r--gee/readonlyset.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/gee/readonlyset.vala b/gee/readonlyset.vala
index 54600dcc8..3d8034373 100644
--- a/gee/readonlyset.vala
+++ b/gee/readonlyset.vala
@@ -25,7 +25,7 @@ using GLib;
/**
* Represents a read-only collection of items without duplicates.
*/
-public class Gee.ReadOnlySet<G> : CollectionObject, Iterable<G>, Collection<G>, Set<G> {
+public class Vala.ReadOnlySet<G> : CollectionObject, Iterable<G>, Collection<G>, Set<G> {
public int size {
get { return _set.size; }
}
@@ -44,7 +44,7 @@ public class Gee.ReadOnlySet<G> : CollectionObject, Iterable<G>, Collection<G>,
return typeof (G);
}
- public Gee.Iterator<G> iterator () {
+ public Vala.Iterator<G> iterator () {
if (_set == null) {
return new Iterator<G> ();
}
@@ -72,7 +72,7 @@ public class Gee.ReadOnlySet<G> : CollectionObject, Iterable<G>, Collection<G>,
assert_not_reached ();
}
- private class Iterator<G> : CollectionObject, Gee.Iterator<G> {
+ private class Iterator<G> : CollectionObject, Vala.Iterator<G> {
public bool next () {
return false;
}