View Single Post
  #3 (permalink)  
Old 08-02-2007, 04:09 PM
cecily cecily is offline
Member
 
Join Date: Jul 2007
Posts: 33
cecily is on a distinguished road
This is my code

Code:
public boolean remove(Student student) { if(student==null) { return false; } else { students.remove(student); return true; } }
Reply With Quote