Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. public String toString() {
  2.         String votes = "[";
  3.         for(int i = this.voting.size()-1; i < this.voting.size()-5; i--) {
  4.             if(i == this.voting.size()- 4) {
  5.                 votes += this.voting.get(i) + "]";
  6.             } else {
  7.                 votes += this.voting.get(i) + ", ";
  8.             }
  9.         }
  10.         return votes;
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement