From: Rico Tzschichholz Date: Thu, 17 May 2018 17:15:52 +0000 (+0200) Subject: vala: Remove unused Interface.prepend_prerequisite() X-Git-Tag: 0.41.90~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bac2785dcd81527ea76fb8cfe6817327768cbdc;p=thirdparty%2Fvala.git vala: Remove unused Interface.prepend_prerequisite() --- diff --git a/vala/valainterface.vala b/vala/valainterface.vala index adb41ae16..39242d358 100644 --- a/vala/valainterface.vala +++ b/vala/valainterface.vala @@ -52,16 +52,6 @@ public class Vala.Interface : ObjectTypeSymbol { type.parent_node = this; } - /** - * Prepends the specified interface or class to the list of - * prerequisites of this interface. - * - * @param type an interface or class reference - */ - public void prepend_prerequisite (DataType type) { - prerequisites.insert (0, type); - } - /** * Returns a copy of the base type list. *