Wrong indents

Spaces slipped through. While I'm at it I also unified other lines.
This commit is contained in:
Killy 2020-05-03 21:31:11 +03:00
commit 90da12d247
2 changed files with 9 additions and 9 deletions

View file

@ -36,12 +36,12 @@ namespace Greenshot.Drawing.Fields.Binding {
protected override float convert(decimal o) { protected override float convert(decimal o) {
return Convert.ToSingle(o); return Convert.ToSingle(o);
} }
public static DecimalFloatConverter GetInstance() public static DecimalFloatConverter GetInstance()
{ {
return _uniqueInstance ??= new DecimalFloatConverter(); return _uniqueInstance ??= new DecimalFloatConverter();
} }
} }
} }

View file

@ -1,4 +1,4 @@
/* /*
* Greenshot - a free and open source screenshot tool * Greenshot - a free and open source screenshot tool
* Copyright (C) 2007-2020 Thomas Braun, Jens Klingen, Robin Krom * Copyright (C) 2007-2020 Thomas Braun, Jens Klingen, Robin Krom
* *
@ -36,12 +36,12 @@ namespace Greenshot.Drawing.Fields.Binding {
protected override int convert(decimal o) { protected override int convert(decimal o) {
return Convert.ToInt32(o); return Convert.ToInt32(o);
} }
public static DecimalIntConverter GetInstance() public static DecimalIntConverter GetInstance()
{ {
return _uniqueInstance ??= new DecimalIntConverter(); return _uniqueInstance ??= new DecimalIntConverter();
} }
} }
} }