If I inline params in the following example:

   ...
   String[] params = { "command" };
   method(params);
   ...

IDEA produces

   ...
   method({ "command" });
   ...

instead of

   ...
   method(new String[]{ "command" });
   ...


Tom


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

Reply via email to