Remove the Data hashtables from MiniObject

We don't have any ways to store them in a persitant way anyway,
for example the content will disappear if the managed mini object
is unreffed and later the same native instance is used again in
managed code.
This commit is contained in:
Sebastian Dröge 2009-06-20 15:22:43 +02:00
parent cc2aa83e67
commit 055571f20c

View file

@ -391,26 +391,6 @@ namespace Gst {
return Handle.GetHashCode ();
}
Hashtable data;
public Hashtable Data {
get {
if (data == null)
data = new Hashtable ();
return data;
}
}
Hashtable persistent_data;
protected Hashtable PersistentData {
get {
if (persistent_data == null)
persistent_data = new Hashtable ();
return persistent_data;
}
}
[DllImport ("libgobject-2.0-0.dll") ]
static extern bool g_type_check_instance_is_a (IntPtr obj, IntPtr gtype);