Fix column ids in AccountDiffPreferences

Change-Id: I9feb6da313ec8f09e77cc351e20449805baf02b3
This commit is contained in:
Shawn O. Pearce
2012-07-30 10:24:55 -07:00
parent 0456fcf583
commit 2fcf95f733

View File

@@ -89,33 +89,33 @@ public class AccountDiffPreference {
protected boolean showWhitespaceErrors;
@Column(id = 7)
protected boolean showLineEndings;
@Column(id = 8)
protected boolean intralineDifference;
@Column(id = 9)
@Column(id = 8)
protected boolean showTabs;
/** Number of lines of context when viewing a patch. */
@Column(id = 10)
@Column(id = 9)
protected short context;
@Column(id = 11)
@Column(id = 10)
protected boolean skipDeleted;
@Column(id = 12)
@Column(id = 11)
protected boolean skipUncommented;
@Column(id = 13)
@Column(id = 12)
protected boolean expandAllComments;
@Column(id = 14)
@Column(id = 13)
protected boolean retainHeader;
@Column(id = 15)
@Column(id = 14)
protected boolean manualReview;
@Column(id = 15)
protected boolean showLineEndings;
protected AccountDiffPreference() {
}