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.
-
-
-