* @param maxSize max size
* @param includeReply if including reply
* @return {@link PanelEntry} list
*/
public List<PanelEntry> getPanelEntries(String feedURL, int maxSize, boolean includeReply) {
SyndFeedInput input = new SyndFeedInput();
XmlReader reader = null;
HttpURLConnection feedConnection = null;
try {
List<PanelEntry> panelEntries = new ArrayList<PanelEntry>();
URL url = new URL(feedURL);
feedConnection = (HttpURLConnection) url.openConnection();
feedConnection.setConnectTimeout(4000);
feedConnection.setReadTimeout(4000);
reader = new XmlReader(feedConnection);
SyndFeed feed = input.build(reader);
int count = 0;
for (Object eachObj : feed.getEntries()) {
SyndEntryImpl each = cast(eachObj);
if (!includeReply && StringUtils.startsWithIgnoreCase(each.getTitle(), "Re: ")) {
continue;