diff options
Diffstat (limited to 'src/core/DataObject.vala')
-rw-r--r-- | src/core/DataObject.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/DataObject.vala b/src/core/DataObject.vala index 4d4566e..3c98e9e 100644 --- a/src/core/DataObject.vala +++ b/src/core/DataObject.vala @@ -115,7 +115,7 @@ public abstract class DataObject : Object { return object_id; } - public Value? get_collection_property(string name, Value? def = null) { + public Value get_collection_property(string name, Value? def = null) { if (member_of == null) return def; |