From 0030fb715567cdef6faaeaeda69edbaf75ec6974 Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Mon, 12 Oct 2015 19:12:39 +0300 Subject: [PATCH] Removed unused code --- .../kotlin/idea/quickfix/migration/util.kt | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 idea/src/org/jetbrains/kotlin/idea/quickfix/migration/util.kt diff --git a/idea/src/org/jetbrains/kotlin/idea/quickfix/migration/util.kt b/idea/src/org/jetbrains/kotlin/idea/quickfix/migration/util.kt deleted file mode 100644 index 33c1fbc87e4..00000000000 --- a/idea/src/org/jetbrains/kotlin/idea/quickfix/migration/util.kt +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright 2010-2015 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.jetbrains.kotlin.idea.quickfix.migration - -import org.jetbrains.kotlin.psi.JetAnnotationEntry -import org.jetbrains.kotlin.psi.JetPsiFactory - -public fun JetAnnotationEntry.addAtSymbol() { - addBefore(JetPsiFactory(this).createAnnotationEntry("@ann").atSymbol!!, firstChild) -}