IG: Portability issues|Auto-boxing not shows all auto-boxing places Follow
I've set Auto-boxing to "As warnings". Following code is detected correctly:
final List list = new MyList]]>();
list.add(30);
Not so with this code:
Integer[] ints = new Integer[] {
10,
20
};
Tom
Please sign in to leave a comment.
Dave, did you take a look at this issue?
Tom
Sorry, I missed replying to this one because it wasn't in th tracker. Yes, I've submitted a fix for this.
--Dave Griffith
Thanx :)
Tom