Does anyone know how I would go about writing a method that sorts using this set up?
This is what I have so far, but it's complain that there's any error with the
.sort.
public static void sort(ArrayList<Insurance> insure)
{
Insurance.sort(insure);
}
Thanks.
Albert