plusone-robotics / moveit_simple

A wrapper around MoveIt that enables more traditional industrial robot programming.
Apache License 2.0
15 stars 12 forks source link

remove trailing whitespace #81

Closed mlautman closed 5 years ago

mlautman commented 5 years ago

This PR removes the trailing whitespace across the code base. It was done with this command.

find . \( -name '*.h' -o -name '*.hpp' -o -name '*.cpp' -o -name '*.c' -o -name '*.markdown' -o -name '*.md' -o -name '*.xml' -o -name '*.m' -o -name '*.txt' -o -name '*.sh' -o -name '*.launch' -o -name '*.world' -o -name '*.urdf' -o -name '*.xacro' -o -name '*.py' -o -name '*.cfg' -o -name '*.msg' -o -name '*.yml' -o -name '*.yaml' -o -name '*.rst' \) -exec sed -i 's/ *$//' '{}' ';'
mlautman commented 5 years ago

@aaronplusone @henningkayser