mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
cosmetic fix
This commit is contained in:
@@ -8,11 +8,11 @@ import com.commafeed.backend.model.FeedEntry;
|
|||||||
public class FeedRefreshContext {
|
public class FeedRefreshContext {
|
||||||
private Feed feed;
|
private Feed feed;
|
||||||
private List<FeedEntry> entries;
|
private List<FeedEntry> entries;
|
||||||
private boolean isUrgent;
|
private boolean urgent;
|
||||||
|
|
||||||
public FeedRefreshContext(Feed feed, boolean isUrgent) {
|
public FeedRefreshContext(Feed feed, boolean isUrgent) {
|
||||||
this.feed = feed;
|
this.feed = feed;
|
||||||
this.isUrgent = isUrgent;
|
this.urgent = isUrgent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Feed getFeed() {
|
public Feed getFeed() {
|
||||||
@@ -24,11 +24,11 @@ public class FeedRefreshContext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean isUrgent() {
|
public boolean isUrgent() {
|
||||||
return isUrgent;
|
return urgent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setUrgent(boolean isUrgent) {
|
public void setUrgent(boolean urgent) {
|
||||||
this.isUrgent = isUrgent;
|
this.urgent = urgent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<FeedEntry> getEntries() {
|
public List<FeedEntry> getEntries() {
|
||||||
|
|||||||
Reference in New Issue
Block a user