summaryrefslogtreecommitdiff
path: root/gee/list.vala
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2010-08-11 22:23:09 +0200
committerJürg Billeter <j@bitron.ch>2010-09-09 15:54:17 +0200
commit7ef23e9eb53def8b3f65ff1152b75dc077e0164f (patch)
treea156fa81bd1b0f9029b1fba0ae35f0689724aee9 /gee/list.vala
parent994935e2af012d64fe053709fccfbbf76c090a54 (diff)
downloadvala-7ef23e9eb53def8b3f65ff1152b75dc077e0164f.tar.gz
gee: Replace interfaces by abstract classes to improve performance
Diffstat (limited to 'gee/list.vala')
-rw-r--r--gee/list.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/gee/list.vala b/gee/list.vala
index 3f1357628..e11399cba 100644
--- a/gee/list.vala
+++ b/gee/list.vala
@@ -23,7 +23,7 @@
/**
* Represents a collection of items in a well-defined order.
*/
-public interface Vala.List<G> : Collection<G> {
+public abstract class Vala.List<G> : Collection<G> {
/**
* Returns the item at the specified index in this list.
*