Advertisement
Guest User

Untitled

a guest
May 20th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public String preuzmiParkiralista() {
  2. for (Izbornik i : popisParking) {
  3. if (popisParkingOdabrano.contains(i.getVrijednost())
  4. && !popisParkingMeto.contains(i)) {
  5. popisParkingMeto.add(i);
  6. }
  7. }
  8.  
  9. for (Izbornik i : popisParkingMeto) {
  10. if (popisParking.contains(i)) {
  11. popisParking.remove(i);
  12. }
  13. }
  14.  
  15. return "";
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement