@@ -15,11 +15,6 @@ public class Post {
15
15
*/
16
16
private String title ;
17
17
18
- /**
19
- * Full article.
20
- */
21
- private String article ;
22
-
23
18
/**
24
19
* Author of the post.
25
20
*/
@@ -49,25 +44,6 @@ public void setTitle(String title) {
49
44
this .title = title ;
50
45
}
51
46
52
- /**
53
- * Gets the {@link #article}.
54
- *
55
- * @return the {@link #article}
56
- */
57
- public String getArticle () {
58
- return article ;
59
- }
60
-
61
- /**
62
- * Sets the {@link #article}.
63
- *
64
- * @param article
65
- * the new {@link #article}
66
- */
67
- public void setArticle (String article ) {
68
- this .article = article ;
69
- }
70
-
71
47
/**
72
48
* Gets the {@link #author}.
73
49
*
@@ -115,7 +91,6 @@ public void setTags(List<String> tags) {
115
91
public int hashCode () {
116
92
final int prime = 31 ;
117
93
int result = 1 ;
118
- result = prime * result + ((article == null ) ? 0 : article .hashCode ());
119
94
result = prime * result + ((author == null ) ? 0 : author .hashCode ());
120
95
result = prime * result + ((tags == null ) ? 0 : tags .hashCode ());
121
96
result = prime * result + ((title == null ) ? 0 : title .hashCode ());
@@ -136,11 +111,6 @@ public boolean equals(Object obj) {
136
111
if (getClass () != obj .getClass ())
137
112
return false ;
138
113
Post other = (Post ) obj ;
139
- if (article == null ) {
140
- if (other .article != null )
141
- return false ;
142
- } else if (!article .equals (other .article ))
143
- return false ;
144
114
if (author == null ) {
145
115
if (other .author != null )
146
116
return false ;
@@ -166,7 +136,7 @@ public boolean equals(Object obj) {
166
136
*/
167
137
@ Override
168
138
public String toString () {
169
- return "Post [title=" + title + ", article=" + article + ", author=" + author + ", tags=" + tags + "]" ;
139
+ return "Post [title=" + title + ", author=" + author + ", tags=" + tags + "]" ;
170
140
}
171
141
172
142
}
0 commit comments