From c76f755ec6f34aa46244eed1af4fd7f332d105af Mon Sep 17 00:00:00 2001 From: ElektroKill Date: Fri, 7 Apr 2023 13:09:27 +0200 Subject: [PATCH] Fix code style --- .../TestCases/Correctness/DecimalFields.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/ICSharpCode.Decompiler.Tests/TestCases/Correctness/DecimalFields.cs b/ICSharpCode.Decompiler.Tests/TestCases/Correctness/DecimalFields.cs index 62679de69..c843b422a 100644 --- a/ICSharpCode.Decompiler.Tests/TestCases/Correctness/DecimalFields.cs +++ b/ICSharpCode.Decompiler.Tests/TestCases/Correctness/DecimalFields.cs @@ -43,19 +43,23 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness return 0; } - public static decimal IntToDecimal() { + public static decimal IntToDecimal() + { return (decimal)int.MaxValue; } - public static decimal UIntToDecimal() { + public static decimal UIntToDecimal() + { return (decimal)uint.MaxValue; } - public static decimal LongToDecimal() { + public static decimal LongToDecimal() + { return (decimal)long.MaxValue; } - public static decimal ULongToDecimal() { + public static decimal ULongToDecimal() + { return (decimal)ulong.MaxValue; } }