Code formatting applied in wrong order...
I believe that when wrapping a long assignment with a method call, the parameters should be given new lines (if that option is selected) before the whole assignment is moved to the next line. What I mean is that I should get...
entry = new RouterEntry("ShoppingListManager.delete",
"opsx.server.kernel.manager.OpsShoppingListManager",
"delete",
new int[]);
instead of what I am getting, which is...
entry =
new RouterEntry("ShoppingListManager.delete",
"opsx.server.kernel.manager.OpsShoppingListManager",
"delete",
new int[]);
BTW - if this isn't the right place to post this, please let me know
Please sign in to leave a comment.
Feel free to submit a bug through http://www.intellij.net/tracker
--
Best regards,
Maxim Shafirov
JetBrains, Inc / IntelliJ Software
http://www.intellij.com
"Develop with pleasure!"
"joe martinez" <no_mail@jetbrains.com> wrote in message
news:2983484.1066259211685.JavaMail.itn@is.intellij.net...
parameters should be given new lines (if that option is selected) before the
whole assignment is moved to the next line. What I mean is that I should
get...
>
>
"opsx.server.kernel.manager.OpsShoppingListManager",
>
>
>