Guest User

Untitled

a guest
May 28th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public void remove()
  2. {
  3. if (data != null) // Wenn Ankerelement überspringen
  4. {
  5. this.p.setN(this.n);
  6. this.n.setP(this.p);
  7.  
  8. this.setN(this.n);
  9. this.setP(this.p);
  10. //Da es nicht mehr referenziert wird, wird es vom Garbage-Collector gelöscht.
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment