Remove exactly duplicated 'else if' branch.

This commit is contained in:
John Lindgren
2019-10-29 17:10:45 -04:00
parent 34ebd82d8c
commit 8072c5c946

View File

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