summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Currency.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Currency.cs')
-rw-r--r--src/mscorlib/src/System/Currency.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mscorlib/src/System/Currency.cs b/src/mscorlib/src/System/Currency.cs
index d29ad2452c..05a09802cd 100644
--- a/src/mscorlib/src/System/Currency.cs
+++ b/src/mscorlib/src/System/Currency.cs
@@ -46,7 +46,6 @@ namespace System {
// Converts a Currency to a Decimal.
//
- [System.Security.SecuritySafeCritical] // auto-generated
public static Decimal ToDecimal(Currency c)
{
Decimal result = new Decimal ();
@@ -54,7 +53,6 @@ namespace System {
return result;
}
- [System.Security.SecurityCritical] // auto-generated
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private static extern void FCallToDecimal(ref Decimal result,Currency c);
}