Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public static void setToInformation_POOL(List<AbsObject> oldAl, List<AbsObject> newAl){
  2.  
  3. for(int l = 0;l<information_POOL.size();l++){
  4.  
  5. List<AbsObject> buffer = information_POOL.get(l);
  6.  
  7. for(int ae = 0;ae<buffer.size();ae++){
  8.  
  9. for(int at = 0;at<oldAl.size();at++){
  10.  
  11. if(buffer.get(ae).equals(oldAl.get(at)))
  12. information_POOL.get(l).set(ae, newAl.get(at));
  13. }
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement