Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. //filters out the blacklisted links
  2. for(String s : blacklist)
  3. {
  4. for(String l : links)
  5. {
  6. if(s.equals(l))
  7. {
  8. links.remove(l);
  9. }
  10. }
  11. }
  12.  
  13. return links;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement