Andy Seaborne wrote:
> 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.
Ok, good I double checked. => no action.
(I need to upgrade, I know).
Now, fighting with the tests which should not log anything:
Log.disable(tdbloader3.class);
Log.disable(TDBLoader.class);
this works for most of the log.info(...), but not for 6 lines:
11:39:25 INFO loader :: Load:
/opt/workspaces/jena/TDB/src/test/resources/tdbloader3/test-01/data.nt --
2012/03/09 11:39:24 GMT
11:39:25 INFO loader :: Load:
/opt/workspaces/jena/TDB/src/test/resources/tdbloader3/test-01/data.nq --
2012/03/09 11:39:25 GMT
Load: /opt/workspaces/jena/TDB/src/test/resources/tdbloader3/test-02/data.nq --
2012/03/09 11:39:27 GMT
Load: /opt/workspaces/jena/TDB/src/test/resources/tdbloader3/test-03/data.nt --
2012/03/09 11:39:29 GMT
Load: /opt/workspaces/jena/TDB/src/test/resources/tdbloader3/test-04/data-02.nt
-- 2012/03/09 11:39:31 GMT
Load: /opt/workspaces/jena/TDB/src/test/resources/tdbloader3/test-04/data-01.nt
-- 2012/03/09 11:39:31 GMT
Strange... search continues.
After that, I'll commit.
Paolo