Remove trailing whitespace.
authorDuncan Mak <duncan.mak@xamarin.com>
Tue, 26 Feb 2013 22:24:30 +0000 (17:24 -0500)
committerDuncan Mak <duncan.mak@xamarin.com>
Tue, 26 Feb 2013 22:36:35 +0000 (17:36 -0500)
mcs/class/corlib/Mono/Runtime.cs

index dbba161ce4c79656922ef53aa02f944756ae88fd..50829e02664677a8240fec6371d9b9df269b2067 100644 (file)
 // distribute, sublicense, and/or sell copies of the Software, and to
 // permit persons to whom the Software is furnished to do so, subject to
 // the following conditions:
-// 
+//
 // The above copyright notice and this permission notice shall be
 // included in all copies or substantial portions of the Software.
-// 
+//
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
@@ -36,10 +36,10 @@ namespace Mono {
 #endif
        static class Runtime
        {
-               
+
                [MethodImplAttribute (MethodImplOptions.InternalCall)]
                private static extern void mono_runtime_install_handlers ();
-               
+
                static internal void InstallSignalHandlers ()
                {
                        mono_runtime_install_handlers ();
@@ -57,5 +57,4 @@ namespace Mono {
                [MethodImplAttribute (MethodImplOptions.InternalCall)]
                public static extern bool SetGCAllowSynchronousMajor (bool flag);
        }
-       
 }