Skip to content

Commit

Permalink
Don't repeat back the command line
Browse files Browse the repository at this point in the history
The user doesn't need to be reminded of
what they just typed. Pipelines can just
echo the command line, if we want to track
it in a log file.
  • Loading branch information
benmwebb committed Aug 22, 2024
1 parent 7f1575f commit 2479ea9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions modules/kinematics/bin/rrt_ccd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,6 @@ using namespace IMP::kinematics;

int main(int argc, char **argv)
{
// output arguments
for (int i=0; i<argc; i++) {
std::cerr << argv[i] << " ";
}
std::cerr << std::endl;

int number_of_iterations = 100;
int number_of_nodes = 100;
int save_configuration_number = 10;
Expand Down
6 changes: 0 additions & 6 deletions modules/kinematics/bin/rrt_sample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ using namespace IMP::kinematics;
namespace {
int rrt_sample(int argc, char **argv)
{
// output arguments
for (int i=0; i<argc; i++) {
std::cerr << argv[i] << " ";
}
std::cerr << std::endl;

int number_of_iterations = 100;
int number_of_nodes = 100;
int save_configuration_number = 10;
Expand Down

0 comments on commit 2479ea9

Please sign in to comment.