From eb53947b6fde251b5eb7cf8948c00297e2cb3ccd Mon Sep 17 00:00:00 2001 From: Dennis Ushakov Date: Fri, 13 May 2016 12:56:53 +0300 Subject: [PATCH] cleanup --- .../treeView/XmlDoctypeNodeDescriptor.java | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 xml/impl/src/com/intellij/ide/util/treeView/XmlDoctypeNodeDescriptor.java diff --git a/xml/impl/src/com/intellij/ide/util/treeView/XmlDoctypeNodeDescriptor.java b/xml/impl/src/com/intellij/ide/util/treeView/XmlDoctypeNodeDescriptor.java deleted file mode 100644 index a6255affd086..000000000000 --- a/xml/impl/src/com/intellij/ide/util/treeView/XmlDoctypeNodeDescriptor.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright 2000-2009 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 com.intellij.ide.util.treeView; - -import com.intellij.openapi.project.Project; -import com.intellij.psi.PsiElement; -import org.jetbrains.annotations.NotNull; - -/** - * @author Mike - */ -public class XmlDoctypeNodeDescriptor extends SmartElementDescriptor { - public XmlDoctypeNodeDescriptor(@NotNull Project project, NodeDescriptor parentDescriptor, PsiElement element) { - super(project, parentDescriptor, element); - //noinspection HardCodedStringLiteral - myName = "DOCTYPE"; - } -}