From 8072c5c94698aa3c2f750f67fc357ba753252e6d Mon Sep 17 00:00:00 2001 From: John Lindgren Date: Tue, 29 Oct 2019 17:10:45 -0400 Subject: [PATCH] Remove exactly duplicated 'else if' branch. --- src/unity.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/unity.c b/src/unity.c index 72d3855..578870a 100644 --- a/src/unity.c +++ b/src/unity.c @@ -342,10 +342,6 @@ void UnityPrintNumberByStyle(const UNITY_INT number, const UNITY_DISPLAY_STYLE_T { UnityPrintNumberUnsigned((UNITY_UINT)number); } - else if ((style & UNITY_DISPLAY_RANGE_UINT) == UNITY_DISPLAY_RANGE_UINT) - { - UnityPrintNumberUnsigned((UNITY_UINT)number); - } else { UNITY_OUTPUT_CHAR('0'); -- GitLab