Hi to all,
all eclipse warnings has been fixed.
In some cases the code is a little less clear (like removing null
assignment to variables that already has null as a value, or moving
some blocks of code outside an else when that else wasn't required),
but for me removing warnings is always a good thing :-) .

To avoid damages, when in doubt I've used the SuppressWarnings ...
Finally, after running some related tests and samples all seems to
work as before.


Only this is still active:

Unnecessary cast from List<capture#2-of ?> to
List<?> EventLoggerSkin.java    /tools/src/org/apache/pivot/tools/wtk   line
123     Java Problem

from:
                    List<?> treeData = (List<?>)treeView.getTreeData();
to:
                    List<?> treeData = treeView.getTreeData();


Todd, you are working on this source in these days, so if you want to
do it ... or telle me.

Bye,
Sandro

Reply via email to