Guest User

Untitled

a guest
Mar 13th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. ArraysList<String> lista = new ArrayList<>();
  2.  
  3. lista
  4. .stream()
  5. .map( c -> {
  6. return c;
  7. })
  8. .collect(Collectors.asList());
Add Comment
Please, Sign In to add comment