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:
authorKonstantin Triger <kostat@mono-cvs.ximian.com>2007-02-05 15:13:32 +0300
committerKonstantin Triger <kostat@mono-cvs.ximian.com>2007-02-05 15:13:32 +0300
commit9a6fb78f3e1e90cbed6be5507180e78f30729cc0 (patch)
tree65ef2fd96a4c2dd24fb1fcaa5c517878c3f6ab63 /mcs/class/System/System.Security.AccessControl
parente12624a0cf3e86e4ca4edd22ed9bf70d8133daeb (diff)
remove TARGET_JVM defines
svn path=/trunk/mcs/; revision=72290
Diffstat (limited to 'mcs/class/System/System.Security.AccessControl')
-rw-r--r--mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs b/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
index f8344420cb7..df54526dab1 100644
--- a/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
+++ b/mcs/class/System/System.Security.AccessControl/SemaphoreAuditRule.cs
@@ -34,18 +34,14 @@ using System.Security.Principal;
namespace System.Security.AccessControl {
[ComVisible (false)]
public sealed class SemaphoreAuditRule
-#if !TARGET_JVM
: AuditRule
-#endif
{
SemaphoreRights semaphoreRights;
public SemaphoreAuditRule (IdentityReference identity,
SemaphoreRights semaphoreRights,
AuditFlags flags)
-#if !TARGET_JVM
: base (identity, 0, false, InheritanceFlags.None, PropagationFlags.None, flags)
-#endif
{
this.semaphoreRights = semaphoreRights;
}