Skip to content

Commit 8266a38

Browse files
committed
updates
1 parent ba5ca31 commit 8266a38

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

  • com.example.android.rssfeed/src/com/example/android/rssfeed

com.example.android.rssfeed/src/com/example/android/rssfeed/RssItem.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ public class RssItem {
66
private String link;
77
private String title;
88

9+
public RssItem() {
10+
}
11+
12+
public RssItem(String title, String link) {
13+
this.title = title;
14+
this.link = link;
15+
}
16+
917
public String getPubDate() {
1018
return pubDate;
1119
}

0 commit comments

Comments
 (0)