Skip to content

Commit

Permalink
清理无用代码,修改部分UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Demo committed Jun 27, 2022
1 parent 1352e67 commit 2970b90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/github/tvbox/osc/api/ApiConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
*/
public class ApiConfig {
private static ApiConfig instance;
private HashMap<String, SourceBean> sourceBeanList;
private LinkedHashMap<String, SourceBean> sourceBeanList;
private SourceBean mHomeSource;
private ParseBean mDefaultParse;
private List<ChannelGroup> channelGroupList;
Expand All @@ -62,7 +62,7 @@ public class ApiConfig {


private ApiConfig() {
sourceBeanList = new HashMap<>();
sourceBeanList = new LinkedHashMap<>();
channelGroupList = new ArrayList<>();
parseBeanList = new ArrayList<>();
}
Expand Down

0 comments on commit 2970b90

Please sign in to comment.