Request : new refactoring
>From :
if (__phoneFax == null){
return EMPTY_STRING;
}
else {
return __phoneFax;
}
to :
return (__phoneFax == null ? EMPTY_STRING: __phoneFax ) ;
_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features
