From e673406300a3c7453205503550c6829aa9e6168e Mon Sep 17 00:00:00 2001 From: Sergey Ignatov Date: Mon, 9 Dec 2019 15:44:50 +0300 Subject: [PATCH] get rid of unused RemoteFileUpdater GitOrigin-RevId: c0e84f22fadacf43395ac272ee578c4c5fca47ca --- .../src/META-INF/XmlPlugin.xml | 2 -- .../ide/browsers/RemoteFileUpdater.java | 30 ------------------- 2 files changed, 32 deletions(-) delete mode 100644 xml/openapi/src/com/intellij/ide/browsers/RemoteFileUpdater.java diff --git a/platform/platform-resources/src/META-INF/XmlPlugin.xml b/platform/platform-resources/src/META-INF/XmlPlugin.xml index 84199b5dadc0..85a8eaa56356 100644 --- a/platform/platform-resources/src/META-INF/XmlPlugin.xml +++ b/platform/platform-resources/src/META-INF/XmlPlugin.xml @@ -40,8 +40,6 @@ interface="com.intellij.ide.structureView.xml.XmlStructureViewBuilderProvider"/> - diff --git a/xml/openapi/src/com/intellij/ide/browsers/RemoteFileUpdater.java b/xml/openapi/src/com/intellij/ide/browsers/RemoteFileUpdater.java deleted file mode 100644 index 5c59ae428b29..000000000000 --- a/xml/openapi/src/com/intellij/ide/browsers/RemoteFileUpdater.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright 2000-2010 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.browsers; - -import com.intellij.openapi.extensions.ExtensionPointName; -import com.intellij.openapi.project.Project; -import com.intellij.openapi.vfs.VirtualFile; -import org.jetbrains.annotations.NotNull; - -/** - * @author nik - */ -public abstract class RemoteFileUpdater { - public static final ExtensionPointName EP_NAME = ExtensionPointName.create("com.intellij.remoteFileUpdater"); - - public abstract boolean updateFile(@NotNull VirtualFile file, Project project, @NotNull Runnable onUpdateFinished); -}