remove test field

This commit is contained in:
Athou
2013-05-07 12:31:37 +02:00
parent c55d48c11c
commit 2f7349640c

View File

@@ -45,7 +45,6 @@ public class UserSettings extends AbstractModel {
private boolean showRead;
private boolean scrollMarks;
private boolean socialButtons;
private boolean test;
@Lob
@Column(length = Integer.MAX_VALUE)
@@ -114,13 +113,4 @@ public class UserSettings extends AbstractModel {
public void setScrollMarks(boolean scrollMarks) {
this.scrollMarks = scrollMarks;
}
public boolean isTest() {
return test;
}
public void setTest(boolean test) {
this.test = test;
}
}