[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.jdt] Useless cast

Hi, i found out that eclipse do not emit a warning for this code:

    	Vector<Integer> v= m.surligne;

    	if (v!=null)
		for (int u = 0; u<v.size();u++)
			if (((Integer) v.get(u))==1) // <= here
    				foo(u);

Should i report a bug ?