Ciao, volevo sapere qual'è la differenza tra questo pezzo di codice

codice:
public Object next ()throws NoSuchElementException
{ if (!hasNext()) throw new NoSuchElementException();
      return v[posizione++];
    }
e questo
codice:
public Object next ()
{ if (!hasNext()) throw new NoSuchElementException();
      return v[posizione++];

Qualcuno sa aiutarmi?