| Author |
CastMap tools (and JDBC assignment)
|
Peter Gragert
Ranch Hand
Joined: Jan 16, 2001
Posts: 421
|
|
I do not like a title of spaces only therefore I 'trimmed' strings and this is already available in 'CastMap': public String getTrimmedString( String key ) { String returnVal = null ; String s = (String)get( key ); if ( s == null ) { returnVal = null ; } else { returnVal = s.trim(); } return returnVal ; } Isn't it just as clear if one would replace if-else because of initialization of 'returnVal' by if( s != null) { returnVal = s.trim(); } ?
|
 |
Marilyn de Queiroz
Sheriff
Joined: Jul 22, 2000
Posts: 9033
|
|
|
Yes, Peter. It's already been changed but the changed jar file isn't available yet. Good catch.
|
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
|
 |
 |
|
|
subject: CastMap tools (and JDBC assignment)
|
|
|