summaryrefslogtreecommitdiff
path: root/resources-en/src/intentionDescriptions/RemoveRedundantElseAction/after.java.template
diff options
context:
space:
mode:
Diffstat (limited to 'resources-en/src/intentionDescriptions/RemoveRedundantElseAction/after.java.template')
-rw-r--r--resources-en/src/intentionDescriptions/RemoveRedundantElseAction/after.java.template8
1 files changed, 8 insertions, 0 deletions
diff --git a/resources-en/src/intentionDescriptions/RemoveRedundantElseAction/after.java.template b/resources-en/src/intentionDescriptions/RemoveRedundantElseAction/after.java.template
new file mode 100644
index 000000000000..6bbd9d56135a
--- /dev/null
+++ b/resources-en/src/intentionDescriptions/RemoveRedundantElseAction/after.java.template
@@ -0,0 +1,8 @@
+public class X {
+ void f(int i) {
+ if (i==0) {
+ return;
+ }
+ int j = 0;
+ }
+} \ No newline at end of file