HowUpDoHighKnee - 2011-12-03

I forgot, that you have to write

...
private volatile NodeImpl rootNode = null;
...

instead of

...
private volatile NodeImpl rootNode;
...

otherwise

public NodeImpl getRootNode() {
return this.rootNode;
}

throths a NullPointerException too!