diff --git a/intellij-plugin/src/main/scala/io/github/dreamylost/plugin/utils/Utils.scala b/intellij-plugin/src/main/scala/io/github/dreamylost/plugin/utils/Utils.scala deleted file mode 100644 index 549c6eecb87721c214eaf1b8c07976ae239ba1d7..0000000000000000000000000000000000000000 --- a/intellij-plugin/src/main/scala/io/github/dreamylost/plugin/utils/Utils.scala +++ /dev/null @@ -1,30 +0,0 @@ -package io.github.dreamylost.plugin.utils - -/** - * - * @author 梦境迷离 - * @since 2021/7/5 - * @version 1.0 - */ -object Utils { - - def convert2ScalaPrimitive(tp: String): String = { - val types = Map( - "int" -> "Int", - "long" -> "Long", - "double" -> "Double", - "float" -> "Float", - "short" -> "Short", - "byte" -> "Byte", - "boolean" -> "Boolean", - "char" -> "Char", - ) - types.getOrElse(tp, tp) - } - - def convert2ScalaType(tp: String): String = { - convert2ScalaPrimitive(tp.replace("<", "[").replace(">", "]")) - } -} - -class Utils