smart enter to wrap its single then/else branch into code blocks (IDEA-155280)

This commit is contained in:
peter
2016-04-29 19:35:30 +02:00
parent 5131d6fadb
commit 4e3139ffda
6 changed files with 63 additions and 21 deletions

View File

@@ -0,0 +1,9 @@
class Foo {
{
if (t != true<caret>)
logger.error("SimulationClient.run error: strategy () still running. please stop it before restart.");
else
proxy.startStopStrategy("strategyName", true);
}
}