Remove trailing blanks.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1491 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8 2006-09-07 07:40:42 +00:00
parent 99b0f0e6b2
commit e2f1c84a39
1 changed files with 3 additions and 1 deletions

View File

@ -191,7 +191,9 @@ public final class Critic {
}
wholeline = templine.toString();
//
// Remove trailing blanks.
//
wholeline = wholeline.replaceAll (" +\n", "\n");
Common.string2file(wholeline, filepath);
}
}