From f71f7dd4ddbc74ea6fed013b3f798655328c822b Mon Sep 17 00:00:00 2001 From: Alexey Sedunov Date: Thu, 9 Jul 2015 19:04:26 +0300 Subject: [PATCH] Minor: Drop unused classes --- .../org/jetbrains/kotlin/idea/util/Maybe.kt | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 idea/src/org/jetbrains/kotlin/idea/util/Maybe.kt diff --git a/idea/src/org/jetbrains/kotlin/idea/util/Maybe.kt b/idea/src/org/jetbrains/kotlin/idea/util/Maybe.kt deleted file mode 100644 index 96fcfa6fc67..00000000000 --- a/idea/src/org/jetbrains/kotlin/idea/util/Maybe.kt +++ /dev/null @@ -1,22 +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.util - -abstract class Maybe -public class MaybeValue(public val value: V) : Maybe() -public class MaybeError(public val error: E) : Maybe() -