From e9f518ddc1490eabeb0092d75b73ffa365d3a96e Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Sat, 30 Jan 2021 02:29:13 -0700 Subject: [PATCH] Convert tabs to spaces because spaces are better. Fight me. No idea how this one file got formatted with tabs. --- .../Os/Impl/InternalCriticalSection-os.net.cs | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/LibHac/Os/Impl/InternalCriticalSection-os.net.cs b/src/LibHac/Os/Impl/InternalCriticalSection-os.net.cs index 2ab241da..761fa7df 100644 --- a/src/LibHac/Os/Impl/InternalCriticalSection-os.net.cs +++ b/src/LibHac/Os/Impl/InternalCriticalSection-os.net.cs @@ -2,35 +2,35 @@ namespace LibHac.Os.Impl { - internal struct InternalCriticalSectionImpl - { - private object _obj; + internal struct InternalCriticalSectionImpl + { + private object _obj; - public void Initialize() - { - _obj = new object(); - } + public void Initialize() + { + _obj = new object(); + } - public void FinalizeObject() { } + public void FinalizeObject() { } - public void Enter() - { - Monitor.Enter(_obj); - } + public void Enter() + { + Monitor.Enter(_obj); + } - public bool TryEnter() - { - return Monitor.TryEnter(_obj); - } + public bool TryEnter() + { + return Monitor.TryEnter(_obj); + } - public void Leave() - { - Monitor.Exit(_obj); - } + public void Leave() + { + Monitor.Exit(_obj); + } - public bool IsLockedByCurrentThread() - { - return Monitor.IsEntered(_obj); - } - } + public bool IsLockedByCurrentThread() + { + return Monitor.IsEntered(_obj); + } + } }