Mark tests as not working under TARGET_JVM
[mono.git] / mcs / class / System.Data / System.Data.Common / DbDataPermission.cs
index bed83518b15d2442668cb733cec4bc7745760d79..9d2139c982b98c59e140ec2977071112b3bf79eb 100644 (file)
@@ -184,9 +184,9 @@ namespace System.Data.Common {
                        }
                }
 
-               [MonoTODO ("restrictions not completely implemented - nor documented")]
                public override IPermission Intersect (IPermission target) 
                {
+                       // FIXME: restrictions not completely implemented - nor documented
                        DBDataPermission dbdp = Cast (target);
                        if (dbdp == null)
                                return null;
@@ -213,9 +213,9 @@ namespace System.Data.Common {
                        return (p._connections.Count > 0) ? p : null;
                }
 
-               [MonoTODO ("restrictions not completely implemented - nor documented")]
                public override bool IsSubsetOf (IPermission target) 
                {
+                       // FIXME: restrictions not completely implemented - nor documented
                        DBDataPermission dbdp = Cast (target);
                        if (dbdp == null)
                                return IsEmpty ();
@@ -267,9 +267,9 @@ namespace System.Data.Common {
                        return se;
                }
 
-               [MonoTODO ("restrictions not completely implemented - nor documented")]
                public override IPermission Union (IPermission target) 
                {
+                       // FIXME: restrictions not completely implemented - nor documented
                        DBDataPermission dbdp = Cast (target);
                        if (dbdp == null)
                                return Copy ();