[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.tools.jdt] Useless cast
|
- From: Name <none@xxxxxxxxxxxxxx>
- Date: Tue, 25 Aug 2009 16:20:25 +0200
- Newsgroups: eclipse.tools.jdt
- Organization: EclipseCorner
- User-agent: Thunderbird 2.0.0.23 (Windows/20090812)
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 ?