summaryrefslogtreecommitdiff
path: root/resources-en/src/intentionDescriptions/ExtractIfConditionAction/before.java.template
diff options
context:
space:
mode:
Diffstat (limited to 'resources-en/src/intentionDescriptions/ExtractIfConditionAction/before.java.template')
-rw-r--r--resources-en/src/intentionDescriptions/ExtractIfConditionAction/before.java.template5
1 files changed, 5 insertions, 0 deletions
diff --git a/resources-en/src/intentionDescriptions/ExtractIfConditionAction/before.java.template b/resources-en/src/intentionDescriptions/ExtractIfConditionAction/before.java.template
new file mode 100644
index 000000000000..e4884f4d6f77
--- /dev/null
+++ b/resources-en/src/intentionDescriptions/ExtractIfConditionAction/before.java.template
@@ -0,0 +1,5 @@
+if (a || <spot>b && c</spot>) {
+ x = 1;
+} else {
+ x = 2;
+}