[findbugs] Use explicit initialization

Findbugs doesn't like using implicitly initialized field in 
initializer.

Change-Id: Ic1ff9011813cc02950a71df587f31ed9f8415b49
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2011-04-04 02:19:16 +02:00
parent 7aec8247c1
commit efad7327ca
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ private class MyIterator implements Iterator<T> {
private int blkIdx;
private T[] block = directory[dirIdx];
private T[] block = directory[0];
public boolean hasNext() {
return index < size;