1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 08:25:58 +01:00

Merge pull request #461 from jlindgren90/duplicate-branch

Remove exactly duplicated 'else if' branch
This commit is contained in:
Mark VanderVoord
2019-10-30 09:31:14 -04:00
committed by GitHub

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