Hi , whose bright idea was this?
public String getFirstName() { String tmp = null; try { tmp = (String) getPerm(User.FIRST_NAME); if(tmp.length() == 0) { tmp = null; } } catch (Exception e) { } return tmp; } public String getLastName() { String tmp = null; try { tmp = (String) getPerm(User.LAST_NAME); if (tmp.length() == 0) tmp = null; } catch (Exception e) { } return tmp; } ?? what's the purpose ? -- Thanks, ilfrin mailto:[EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]