Convert tabs to spaces because spaces are better. Fight me.

No idea how this one file got formatted with tabs.
This commit is contained in:
Alex Barney 2021-01-30 02:29:13 -07:00
parent 3463c977dd
commit e9f518ddc1

View file

@ -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);
}
}
}