diff --git a/build.xml b/build.xml
index 1438501c068..cab8bd8cd2b 100644
--- a/build.xml
+++ b/build.xml
@@ -284,26 +284,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/renameImportJet.kt b/renameImportJet.kt
deleted file mode 100644
index 25f4f988002..00000000000
--- a/renameImportJet.kt
+++ /dev/null
@@ -1,34 +0,0 @@
-import java.io.File
-import com.intellij.util.Processor
-import com.intellij.openapi.util.io.FileUtil
-import java.util.ArrayList
-
-fun main(args: Array) {
- println("renameImportJet")
-
- fun processFile(file: File) {
- if (!file.getName().endsWith(".java") || file.isDirectory()) return
-
- val lines = ArrayList()
- var rewrite = false
- file.reader().forEachLine { line ->
- if (line.startsWith("import jet.") && !line.startsWith("import jet.runtime.typeinfo")) {
- lines.add("import kotlin." + line.substring("import jet.".length))
- rewrite = true
- }
- else {
- lines.add(line)
- }
- }
-
- if (rewrite) {
- println("renaming imports in $file")
- file.writeText(lines reduce { (a, b) -> "$a\n$b" })
- }
- }
-
- val processor = Processor { if (it != null) processFile(it); true }
- val directoryFilter = Processor { it?.getName() != "testData" }
-
- FileUtil.processFilesRecursively(File("."), processor, directoryFilter)
-}