New code
public class DrawableNode extends LLNode {
public DrawableNode next;
/
Constructors
/
public DrawableNode() {
super();
}
}
//Is this the right way to delete the repeated code from the parent class?