From f1bad27fb8380317ad04b0fb6fd06d8a2d83d149 Mon Sep 17 00:00:00 2001 From: Yann Cebron Date: Wed, 12 Oct 2011 20:54:39 +0200 Subject: [PATCH] intention description: don't use anymore --- .../ConditionalOperatorConvertor/description.html | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/samples/conditionalOperatorConvertor/source/intentionDescriptions/ConditionalOperatorConvertor/description.html b/samples/conditionalOperatorConvertor/source/intentionDescriptions/ConditionalOperatorConvertor/description.html index 7a3a66caf072..e9ab8f14465c 100644 --- a/samples/conditionalOperatorConvertor/source/intentionDescriptions/ConditionalOperatorConvertor/description.html +++ b/samples/conditionalOperatorConvertor/source/intentionDescriptions/ConditionalOperatorConvertor/description.html @@ -1,12 +1,10 @@ - - This intention converts the ternary operator to the if statement.
- For example:
- the (a > 0) ? return a;: return -a;
- will be converted to the code:
- if (a > 0) { return a;}
- else {return -a;}
-
+ This intention converts the ternary operator to the if statement.
+ For example:
+ the (a > 0) ? return a;: return -a;
+ will be converted to the code:
+ if (a > 0) { return a;}
+ else {return -a;}
\ No newline at end of file