Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Skiba <andrews@mono-cvs.ximian.com>2006-09-28 17:29:01 +0400
committerAndrew Skiba <andrews@mono-cvs.ximian.com>2006-09-28 17:29:01 +0400
commitd1d30575e67ec7cb98b70a7ae34964fa84e2f88f (patch)
tree284de716a8ed99fb38381bce8e72a9a7310a6974 /mcs/class/System/System.Security.AccessControl
parentfe9f5d450439b460ec1c79ccf88910bc9a229307 (diff)
TARGET_JVM
svn path=/trunk/mcs/; revision=66026
Diffstat (limited to 'mcs/class/System/System.Security.AccessControl')
-rw-r--r--mcs/class/System/System.Security.AccessControl/ChangeLog4
-rw-r--r--mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs5
2 files changed, 8 insertions, 1 deletions
diff --git a/mcs/class/System/System.Security.AccessControl/ChangeLog b/mcs/class/System/System.Security.AccessControl/ChangeLog
index 5b3d4fb238f..51c6bfab5bf 100644
--- a/mcs/class/System/System.Security.AccessControl/ChangeLog
+++ b/mcs/class/System/System.Security.AccessControl/ChangeLog
@@ -1,3 +1,7 @@
+2006-09-28 Andrew Skiba <andrews@mainsoft.com>
+
+ * SemaphoreAuditRule.cs: TARGET_JVM
+
2006-07-06 Dick Porter <dick@ximian.com>
* Completely stubbed the System.Security.AccessControl namespace
diff --git a/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs b/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
index 9976a877c66..db0a3873ae1 100644
--- a/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
+++ b/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
@@ -33,7 +33,10 @@ using System.Security.Principal;
namespace System.Security.AccessControl {
[ComVisible (false)]
- public sealed class SemaphoreAuditRule : AuditRule
+ public sealed class SemaphoreAuditRule
+#if !TARGET_JVM
+ : AuditRule
+#endif
{
SemaphoreRights semaphoreRights;