What is wrong with this bit of code?
addPatient method from "Daylog" class:
publicvoid addPatient(Patient patientName,int h2,int m2)
{
Patient.setArrivalTime(h2, m2);
}
setArrivalTime method from "Patient" class;
publicvoid setArrivalTime(int h,int m)
{
arrivalTime =new Time(h, m);
}

