I've got other programmer code, how can put "if's", instead of assertion, in this part of it? Or perhaps, there is third, better way.
public Wezel<Wartosc,Indeks> getWujek()
{
assert rodzic != null; // Root node has no uncle
assert rodzic.rodzic != null; // Children of root have no uncle
return rodzic.getBrat();
}