mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
intention description: don't use <font> anymore
This commit is contained in:
+6
-8
@@ -1,12 +1,10 @@
|
||||
<html>
|
||||
<body>
|
||||
<font face="verdana" size="-1">
|
||||
This intention converts the ternary operator to the if statement. <br>
|
||||
For example: <br>
|
||||
the <i>(a > 0) ? return a;: return -a;</i> <br>
|
||||
will be converted to the code:<br><i>
|
||||
if (a > 0) { return a;}<br>
|
||||
else {return -a;}</i>
|
||||
</font>
|
||||
This intention converts the ternary operator to the if statement. <br>
|
||||
For example: <br>
|
||||
the <i>(a > 0) ? return a;: return -a;</i> <br>
|
||||
will be converted to the code:<br><i>
|
||||
if (a > 0) { return a;}<br>
|
||||
else {return -a;}</i>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user