Answered
A class extends another but imports the same libraries
These are imported by the parent class and the child class
import com.Gerry.db.DbManager;
import com.Gerry.controller.Home;
import com.Gerry.data.Data;
One of my classes extends another but both import the same libraries. (I inherited this code). That doesn't make sense does it. By extending a class you inherit all the libraries etc... right?
