Skip to content

Commit

Permalink
Fix Yaaic.getServers().
Browse files Browse the repository at this point in the history
  • Loading branch information
pocmo committed Oct 4, 2015
1 parent e198791 commit 38dab30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/org/yaaic/Yaaic.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public List<Server> getServers()
List<Server> servers = new ArrayList<>(this.servers.size());

for (int i = 0; i < this.servers.size(); i++) {
servers.add(servers.get(i));
servers.add(this.servers.valueAt(i));
}

return servers;
Expand Down

0 comments on commit 38dab30

Please sign in to comment.