I'm not sure this hasn't been said before
(I know, double negative)

but
    'Inline variable'

works in this case (inline "cellValue")


      String cellValue = "y";
      String temp = "x" + cellValue + "Z";

   ==>
      String temp = "x" + "y" + "Z";

but not in this one

    String cellValue = "y";
    cellValue = "x" + cellValue + "Z";

(should produce
      String cellValue = "x" + "y" + "Z";


A more typical usage is
    String   s = someMethod() ;
    s = s.trim()


Alain Ravet




_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to