You have not actually transformed the list; you have created a new list.
To transform the list in one small method call, use List#replaceAll():
list.replaceAll(String::toUpperCase);
You have not actually transformed the list; you have created a new list.
To transform the list in one small method call, use List#replaceAll():
list.replaceAll(String::toUpperCase);