Skip to content

Commit

Permalink
Removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Oct 24, 2024
1 parent 9d0943c commit dfabf34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void ConverterLegacy::convertExternalJar(const std::string& value) {
std::string jar;

while (std::getline(stream, jar, ':')) {
m_jarPaths.insert(jar); // If m_jarPaths is a Set or you make it a Set, uniqueness implicitly is taken care of
m_jarPaths.insert(jar);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void ConverterV2::convertExternalJar(const std::string & value) {
std::string jar;

while (std::getline(stream, jar, ':')) {
m_jarPaths.insert(jar); // If m_jarPaths is a Set or you make it a Set, uniqueness implicitly is taken care of
m_jarPaths.insert(jar);
}
}

Expand Down

0 comments on commit dfabf34

Please sign in to comment.