ColString: Removed obsolete column for ViewText

This commit is contained in:
Paul Beckingham
2016-12-31 11:53:00 -05:00
parent 5fb7b24011
commit fdcb084df6
4 changed files with 0 additions and 170 deletions

View File

@@ -44,7 +44,6 @@
#include <ColScheduled.h>
#include <ColStart.h>
#include <ColStatus.h>
#include <ColString.h>
#include <ColTags.h>
#include <ColUntil.h>
#include <ColUrgency.h>
@@ -101,9 +100,6 @@ Column* Column::factory (const std::string& name, const std::string& report)
else if (column_name == "uuid") c = new ColumnUUID ();
else if (column_name == "wait") c = new ColumnWait ();
// Special non-task column.
else if (column_name == "string") c = new ColumnString ();
// UDA.
else if (context.config.has ("uda." + column_name + ".type"))
c = Column::uda (column_name);