Skip to content

Commit 533d019

Browse files
committed
remove useless comments
1 parent 3ba11a4 commit 533d019

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/subcommand/status_subcommand.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ struct print_entry
7373
std::string item;
7474
};
7575

76-
std::string get_print_status(git_status_t status, output_format of) //TODO: add colours, but depends on the status, so needs another parameter
76+
std::string get_print_status(git_status_t status, output_format of)
7777
{
7878
std::string entry_status;
7979
if ((of == output_format::DEFAULT) || (of == output_format::LONG))
@@ -100,7 +100,7 @@ void update_tracked_dir_set(const char* old_path, const char* new_path, std::set
100100
}
101101
}
102102

103-
std::string get_print_item(const char* old_path, const char* new_path) //TODO: add colours, but depends on the status, so needs another parameter
103+
std::string get_print_item(const char* old_path, const char* new_path)
104104
{
105105
std::string entry_item;
106106
if (old_path && new_path && std::strcmp(old_path, new_path))

0 commit comments

Comments
 (0)