ColUDA: Removed redundant code

This commit is contained in:
Paul Beckingham
2016-12-31 10:40:29 -05:00
parent a2684a6a12
commit e2d9ae379b

View File

@@ -121,8 +121,6 @@ void ColumnUDAString::render (
renderStringLeft (lines, width, color, i); renderStringLeft (lines, width, color, i);
} }
else if (_style == "indicator") else if (_style == "indicator")
{
if (task.has (_name))
{ {
auto indicator = context.config.get ("uda." + _name + ".indicator"); auto indicator = context.config.get ("uda." + _name + ".indicator");
if (indicator == "") if (indicator == "")
@@ -131,7 +129,6 @@ void ColumnUDAString::render (
renderStringRight (lines, width, color, indicator); renderStringRight (lines, width, color, indicator);
} }
} }
}
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////