From ff75ae80fa44dfc925064f7ca0169ac80997bc77 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Thu, 22 Nov 2018 23:46:49 +0000 Subject: Bug 540373: Cleanup: Remove trailing whitespace in properties files Command used: # Remove space at eol in comments find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^(#.*)[ \t]+$/\1/' {} + # Remove space at eol in blank lines find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^[ \t]+$//' {} + # Replace escaped spaces at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\ $/\1\\u0020/' {} + # Replace unescaped spaces at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\]) $/\1\\u0020/' {} + # Replace escaped tabs at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\\t$/\1\\u0009/' {} + # Replace unescaped tabs at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\t$/\1\\u0009/' {} + # Stage all changes git add -A . # trim any remaining whitespace and then identify and fixup # manually # Only dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/MessagesForDebugVM.properties # needed this due to missing newline at end of the file find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/[ \t]+$//' {} + Change-Id: I858f16891fe001f4f7e62d5a4f904146e891cd39 --- lrparser/org.eclipse.cdt.core.lrparser.feature/build.properties | 2 +- lrparser/org.eclipse.cdt.core.lrparser.feature/feature.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lrparser/org.eclipse.cdt.core.lrparser.feature') diff --git a/lrparser/org.eclipse.cdt.core.lrparser.feature/build.properties b/lrparser/org.eclipse.cdt.core.lrparser.feature/build.properties index 355450ee836..cae59d603e0 100644 --- a/lrparser/org.eclipse.cdt.core.lrparser.feature/build.properties +++ b/lrparser/org.eclipse.cdt.core.lrparser.feature/build.properties @@ -7,7 +7,7 @@ # https://www.eclipse.org/legal/epl-2.0/ # # SPDX-License-Identifier: EPL-2.0 -# +# # Contributors: # IBM Corporation - initial API and implementation ############################################################################### diff --git a/lrparser/org.eclipse.cdt.core.lrparser.feature/feature.properties b/lrparser/org.eclipse.cdt.core.lrparser.feature/feature.properties index 0b12c2341be..c8755e0b614 100644 --- a/lrparser/org.eclipse.cdt.core.lrparser.feature/feature.properties +++ b/lrparser/org.eclipse.cdt.core.lrparser.feature/feature.properties @@ -7,7 +7,7 @@ # https://www.eclipse.org/legal/epl-2.0/ # # SPDX-License-Identifier: EPL-2.0 -# +# # Contributors: # IBM Corporation - initial API and implementation ############################################################################### -- cgit v1.2.3