Skip to content

Instantly share code, notes, and snippets.

@jmaciasluque
Created August 11, 2015 13:50
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jmaciasluque/7f6da76582fc78dad0ff to your computer and use it in GitHub Desktop.
private void exercise3() {
List<String> list = Arrays.asList("alpha", "bravo", "charlie", "delta", "echo", "foxtrot");
list.replaceAll(String::toUpperCase);
System.out.println(list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment