This is the Code i found in a book:
list = new ArrayList();
list.add( "SuppressWarnings" );
So in Eclipse, this code gave me those warnings:
Note: ABC.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details.
But as i tried it in Intellij, everything was fine. Whats the problem with this code and what is this code doing, cause that was not described in my book?