After following a Slick2D tutorial on custom fonts, it provided me with the following code to initialise it:
titleFont.addAsciiGlyphs();
titleFont.addGlyphs(400, 600);
titleFont.getEffects().add(new ColorEffect()); //Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
titleFont.loadGlyphs();
Eclipse throws the commented warning on that line. Can you please answer with a replacement to line 3 with whatever Eclipse is asking me to put in there.