vorburger opened a new pull request #688: clean up all whitespace issues in Java files (FINERACT-821) URL: https://github.com/apache/fineract/pull/688 1. convert all Java files from DOS to UNIX line ending: find . -type f -name "*.java" -exec dos2unix '{}' ';' 2. replace Tabs with 4 Spaces: rpl -eRxjava "\t" " " . 3. remove all trailing spaces: find . -type f -name "*.java" -exec sed -i 's/ *$//' '{}' ';'
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
