class History {
public String[] history;
public History(String[] history) {
if (history == null)
history = new String[]{};
else
history = this.history
}
}
It just keep saving null down no matter what i give it.. So can't work with it..