summaryrefslogtreecommitdiff
path: root/vala/valamethodtype.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2019-09-29 18:28:28 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2019-09-30 14:43:00 +0200
commitf01dde88c36fff9b1bc60e1368a71062ed07a58c (patch)
tree3541348c6c437d30e5a1df0dab749af930794af5 /vala/valamethodtype.vala
parent29a3caef34597b0d9d7f87891d011a67c54dd17a (diff)
downloadvala-f01dde88c36fff9b1bc60e1368a71062ed07a58c.tar.gz
vala: Move common implementations to CallableType
Diffstat (limited to 'vala/valamethodtype.vala')
-rw-r--r--vala/valamethodtype.vala12
1 files changed, 0 insertions, 12 deletions
diff --git a/vala/valamethodtype.vala b/vala/valamethodtype.vala
index b59b3f375..2ebef7451 100644
--- a/vala/valamethodtype.vala
+++ b/vala/valamethodtype.vala
@@ -36,18 +36,6 @@ public class Vala.MethodType : CallableType {
base (method_symbol);
}
- public override bool is_invokable () {
- return true;
- }
-
- public override unowned DataType? get_return_type () {
- return method_symbol.return_type;
- }
-
- public override unowned List<Parameter>? get_parameters () {
- return method_symbol.get_parameters ();
- }
-
public override DataType copy () {
return new MethodType (method_symbol);
}