removed unused urlHash field

This commit is contained in:
Athou
2013-07-27 15:45:15 +02:00
parent 3dd4f140e2
commit 60bf96411c
4 changed files with 8 additions and 19 deletions

View File

@@ -29,9 +29,6 @@ public class Feed extends AbstractModel {
@Column(length = 2048, nullable = false)
private String url;
@Column(length = 40, nullable = false)
private String urlHash;
@Column(length = 2048, nullable = false)
private String normalizedUrl;
@@ -199,14 +196,6 @@ public class Feed extends AbstractModel {
this.disabledUntil = disabledUntil;
}
public String getUrlHash() {
return urlHash;
}
public void setUrlHash(String urlHash) {
this.urlHash = urlHash;
}
public String getLastModifiedHeader() {
return lastModifiedHeader;
}