Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jumde committed May 24, 2019
1 parent b6e88ef commit 58a37c5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/brave_command_line_helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,8 @@ void BraveCommandLineHelper::AppendCSV(
command_line_.AppendSwitchASCII(switch_key, ss.str());
}

void BraveCommandLineHelper::AppendSwitchASCII(
const char* switch_key,
const char* value) {
if (!command_line_.HasSwitch(switch_key))
void BraveCommandLineHelper::AppendSwitchASCII(const char* switch_key,
const char* value) {
if (!command_line_.HasSwitch(switch_key))
command_line_.AppendSwitchASCII(switch_key, value);
}

0 comments on commit 58a37c5

Please sign in to comment.