Simplistic-RSS
Simplistic-RSS copied to clipboard
README.md - wrong list initialization
Hello, in readme md the list is initialized like this
ArrayList<RssItem> RssItems;
But this is wrong and may be confusing for new users. It should be like this:
List<RssItem> RssItems = new ArrayList<RssItem>();