From 2c44692b49600b7da97354f2384587a0f9290eae Mon Sep 17 00:00:00 2001 From: Tagir Valeev Date: Mon, 11 Mar 2019 13:05:39 +0700 Subject: [PATCH] Remove descriptions of merged intentions (IDEA-208199; IDEA-CR-44719) --- .../ConvertIntegerToBinaryIntention/after.java.template | 5 ----- .../ConvertIntegerToBinaryIntention/before.java.template | 5 ----- .../ConvertIntegerToBinaryIntention/description.html | 7 ------- .../ConvertIntegerToDecimalIntention/after.java.template | 5 ----- .../ConvertIntegerToDecimalIntention/before.java.template | 5 ----- .../ConvertIntegerToDecimalIntention/description.html | 3 --- .../ConvertIntegerToHexIntention/after.java.template | 5 ----- .../ConvertIntegerToHexIntention/before.java.template | 5 ----- .../ConvertIntegerToHexIntention/description.html | 3 --- .../ConvertIntegerToOctalIntention/after.java.template | 5 ----- .../ConvertIntegerToOctalIntention/before.java.template | 5 ----- .../ConvertIntegerToOctalIntention/description.html | 3 --- .../ConvertToPlainIntention/after.java.template | 5 ----- .../ConvertToPlainIntention/before.java.template | 5 ----- .../ConvertToPlainIntention/description.html | 6 ------ .../after.java.template | 5 ----- .../before.java.template | 5 ----- .../ConvertToScientificNotationIntention/description.html | 7 ------- 18 files changed, 89 deletions(-) delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/after.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/before.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/description.html delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/after.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/before.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/description.html delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/after.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/before.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/description.html delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/after.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/before.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/description.html delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/after.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/before.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/description.html delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/after.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/before.java.template delete mode 100644 plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/description.html diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/after.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/after.java.template deleted file mode 100644 index 03075fc70200..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/after.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - int i = 0b101; - } -} \ No newline at end of file diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/before.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/before.java.template deleted file mode 100644 index 48bfb8cf83ff..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/before.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - int i = 5; - } -} \ No newline at end of file diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/description.html b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/description.html deleted file mode 100644 index d909b62b0792..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToBinaryIntention/description.html +++ /dev/null @@ -1,7 +0,0 @@ - - -This intention converts selected integer literal into binary notation -(supported in JDK 7 or higher). -

- - diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/after.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/after.java.template deleted file mode 100644 index 47601b788a01..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/after.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - int i = 65535; - } -} \ No newline at end of file diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/before.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/before.java.template deleted file mode 100644 index 9a5af10400fd..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/before.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - int i = 0xffff; - } -} \ No newline at end of file diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/description.html b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/description.html deleted file mode 100644 index 74ce621687f1..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToDecimalIntention/description.html +++ /dev/null @@ -1,3 +0,0 @@ - -This intention converts selected integer literal into decimal notation. - diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/after.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/after.java.template deleted file mode 100644 index cf8635d30db8..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/after.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - int i = 0xff; - } -} \ No newline at end of file diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/before.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/before.java.template deleted file mode 100644 index 0d4511d13aa9..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/before.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - int i = 255; - } -} \ No newline at end of file diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/description.html b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/description.html deleted file mode 100644 index 2ab292e82a65..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToHexIntention/description.html +++ /dev/null @@ -1,3 +0,0 @@ - -This intention converts selected integer literal into hexadecimal notation. - diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/after.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/after.java.template deleted file mode 100644 index f2aafc200423..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/after.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - int i = 020; - } -} \ No newline at end of file diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/before.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/before.java.template deleted file mode 100644 index 6e7e7194f02d..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/before.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - int i = 16; - } -} \ No newline at end of file diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/description.html b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/description.html deleted file mode 100644 index b30aba59776f..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertIntegerToOctalIntention/description.html +++ /dev/null @@ -1,3 +0,0 @@ - -This intention converts selected integer literal into octal notation. - diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/after.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/after.java.template deleted file mode 100644 index 892fefba9b51..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/after.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - double d = 1234.56789; - } -} diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/before.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/before.java.template deleted file mode 100644 index 4a79cad248cd..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/before.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - double d = 1.23456789e3; - } -} diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/description.html b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/description.html deleted file mode 100644 index 8983aec026f8..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToPlainIntention/description.html +++ /dev/null @@ -1,6 +0,0 @@ - - -This intention converts selected double or float literal written in engineering notation -into plain notation. - - diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/after.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/after.java.template deleted file mode 100644 index 1f8fa2217f2a..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/after.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - double d = 1.23456789e3; - } -} diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/before.java.template b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/before.java.template deleted file mode 100644 index 342b350e1ace..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/before.java.template +++ /dev/null @@ -1,5 +0,0 @@ -public class X { - void f() { - double d = 1234.56789; - } -} diff --git a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/description.html b/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/description.html deleted file mode 100644 index 40fd0293a10f..000000000000 --- a/plugins/IntentionPowerPak/src/intentionDescriptions/ConvertToScientificNotationIntention/description.html +++ /dev/null @@ -1,7 +0,0 @@ - - -This intention converts selected double or float literal written in decimal notation -into scientific notation. -

- -