summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs
diff options
context:
space:
mode:
authorAlex Perovich <alperovi@microsoft.com>2017-02-22 15:23:44 -0800
committerAlex Perovich <alperovi@microsoft.com>2017-02-23 13:43:32 -0800
commitea9bee5ac2f96a1ea6b202dc4094b8d418d9209c (patch)
tree6ed2957084ed081ff2fce06d26d748b37b30165f /src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs
parent2ace58ac2bba14ffd469ecb89f972b8e9b8fd61d (diff)
downloadcoreclr-ea9bee5ac2f96a1ea6b202dc4094b8d418d9209c.tar.gz
coreclr-ea9bee5ac2f96a1ea6b202dc4094b8d418d9209c.tar.bz2
coreclr-ea9bee5ac2f96a1ea6b202dc4094b8d418d9209c.zip
Run codeformatter on S.P.CoreLib sources
Diffstat (limited to 'src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs')
-rw-r--r--src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs b/src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs
index 7fa2420530..d78aae216b 100644
--- a/src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs
+++ b/src/mscorlib/src/System/Runtime/InteropServices/WindowsRuntime/Attributes.cs
@@ -90,14 +90,14 @@ namespace System.Runtime.InteropServices.WindowsRuntime
[AttributeUsage(AttributeTargets.Parameter, Inherited = false, AllowMultiple = false)]
public sealed class ReadOnlyArrayAttribute : Attribute
{
- public ReadOnlyArrayAttribute() {}
+ public ReadOnlyArrayAttribute() { }
}
// Applies to write-only array parameters
[AttributeUsage(AttributeTargets.Parameter, Inherited = false, AllowMultiple = false)]
public sealed class WriteOnlyArrayAttribute : Attribute
{
- public WriteOnlyArrayAttribute() {}
+ public WriteOnlyArrayAttribute() { }
}
@@ -119,5 +119,4 @@ namespace System.Runtime.InteropServices.WindowsRuntime
get { return m_Name; }
}
}
-
}