On 09/03/12 10:52, Paolo Castagna wrote:
GraphTDBBase.java
line 54: @SuppressWarnings("hiding")
line 55: private final QueryHandlerTDB queryHandler = new
QueryHandlerTDB(this) ;
I see a warning:
Unnecessary @SuppressWarnings("hiding") GraphTDBBase.java
/TDB/src/main/java/com/hp/hpl/jena/tdb/store line 54 Java Problem
Is it my ancient version of Eclipse or is it truly unnecessary?
It is necessary in my Eclipse. Indigo SR-1.
That is the only warning I see, which is refreshingly good! ;-)
Experience from doing releases:
Warnings should be removed by the app writer deciding that can be
suppressed, or rewritten to remove them.
Otherwise, the RM has to check every one to make sure they are OK -
which is what @SuppressWarnings is for in the first place.
In 200K lines of code + 100K lines of tests, this is not a trivial matter.
Andy
Thanks,
Paolo