Code Cleanup

- Removed unnecessary include.
- Removed extra whitespace.
This commit is contained in:
Paul Beckingham 2014-07-06 09:29:32 -04:00
parent 6fb1cbdc7f
commit 2e27ed0268
2 changed files with 0 additions and 3 deletions

View file

@ -82,7 +82,6 @@ int CmdDuplicate::execute (std::string& output)
dup.remove ("recur");
dup.remove ("until");
dup.remove ("imask");
std::cout << format (STRING_CMD_DUPLICATE_NON_REC, task->id)
<< "\n";
}
@ -91,7 +90,6 @@ int CmdDuplicate::execute (std::string& output)
else if (dup.getStatus () == Task::recurring)
{
dup.remove ("mask");
std::cout << format (STRING_CMD_DUPLICATE_REC, task->id)
<< "\n";
}

View file

@ -24,7 +24,6 @@
//
////////////////////////////////////////////////////////////////////////////////
#include <iostream> // TODO Remove
#include <cmake.h>
#include <stdlib.h>
#include <Context.h>