Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
made rss feed better
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Oct 17, 2019
1 parent fe6ace4 commit 091d282
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/main/java/com/andromeda/araserver/account/Run.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.andromeda.araserver.account;

public class Run {
}
3 changes: 2 additions & 1 deletion src/main/java/com/andromeda/araserver/pages/RssMain.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import com.rometools.rome.io.XmlReader
import java.io.IOException
import java.net.URL
import java.util.*
import kotlin.collections.ArrayList

/**
* Object used to handle RSS Feeds.
Expand All @@ -27,7 +28,7 @@ object RssMain {
@Throws(IOException::class, FeedException::class)
fun rssMain1(mode: Int): SyndFeed {
//Feed link text
val feeds = arrayOfNulls<String>(4)
val feeds = ArrayList<String>();
when (mode) {
1 -> {
//World news
Expand Down

0 comments on commit 091d282

Please sign in to comment.