Rename Whitespace enum to make the intent more clear

Change-Id: I591abfe195a9cb2baf3ac516c7874d28ef70f20e
This commit is contained in:
David Ostrovsky
2015-10-24 13:03:34 +02:00
committed by David Ostrovsky
parent dc53a1665b
commit 09caa54a0e
9 changed files with 40 additions and 40 deletions

View File

@@ -32,9 +32,9 @@ public class AccountDiffPreference {
public static enum Whitespace implements CodedEnum {
IGNORE_NONE('N'), //
IGNORE_SPACE_AT_EOL('E'), //
IGNORE_SPACE_CHANGE('S'), //
IGNORE_ALL_SPACE('A');
IGNORE_TRAILING('E'), //
IGNORE_LEADING_AND_TRAILING('S'), //
IGNORE_ALL('A');
private final char code;