Java suppresswarnings sans contrôle

public class Machine {
    private List versions;

    @SuppressWarnings("unchecked")
    // or
    @SuppressWarnings({"unchecked"})
    public void addVersion(String version) {
        versions.add(version);
    }
}
takemetothelakeswhereallthepoetswenttodie