]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Remove unused method
authorJürg Billeter <j@bitron.ch>
Mon, 27 Oct 2008 08:15:36 +0000 (08:15 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Mon, 27 Oct 2008 08:15:36 +0000 (08:15 +0000)
2008-10-27  Jürg Billeter  <j@bitron.ch>

* gobject/valaccodemethodmodule.vala:

Remove unused method

svn path=/trunk/; revision=1935

ChangeLog
gobject/valaccodemethodmodule.vala

index 4260e97bdfbeca0ebe9919cdc155137cd19336e2..4433a61bf4eb95b360b6dd200fe43ef8aea7271a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-10-27  Jürg Billeter  <j@bitron.ch>
+
+       * gobject/valaccodemethodmodule.vala:
+
+       Remove unused method
+
 2008-10-27  Jürg Billeter  <j@bitron.ch>
 
        * vala/valaarraylengthfield.vala:
index ea23d76590d08703ed6d860249bfcc3417e8cc00..996cd02cfa90f362f6a942de07ccb14c871acdfb 100644 (file)
@@ -884,14 +884,6 @@ public class Vala.CCodeMethodModule : CCodeModule {
                b.add_statement (cdeclaration);
        }
 
-       private Class find_fundamental_class (Class cl) {
-               var fundamental_class = cl;
-               while (fundamental_class != null && fundamental_class.base_class != null) {
-                       fundamental_class = fundamental_class.base_class;
-               }
-               return fundamental_class;
-       }
-
        public override void visit_creation_method (CreationMethod m) {
                if (m.body != null && codegen.current_type_symbol is Class && codegen.current_class.is_subtype_of (codegen.gobject_type)) {
                        int n_params = 0;