public UserManager getUserManager(String LoginName){
    try{
        ListIterator li = table.listIterator();
         UserTableElement ute;
         while(li.hasNext()){
             ute = (UserTableElement)li.next();
             if(ute.LoginName.equalsIgnoreCase(LoginName)); 
             return ute.userManager;
         }
    }catch (Exception e) {
        // TODO: handle exception
        return null;
    }
    return null;
}



덜덜덜
if문 뒤에 세미콜론(;)붙이는 실수를 해버렸다니..

이런 초보적인 실수를-┎

2006/08/04 19:52 2006/08/04 19:52

Trackback Address :: 이 글에는 트랙백을 보낼 수 없습니다