get rid of unused RemoteFileUpdater

GitOrigin-RevId: c0e84f22fadacf43395ac272ee578c4c5fca47ca
This commit is contained in:
Sergey Ignatov
2019-12-09 13:04:47 +00:00
committed by intellij-monorepo-bot
parent dccf5745a1
commit e673406300
2 changed files with 0 additions and 32 deletions
@@ -40,8 +40,6 @@
interface="com.intellij.ide.structureView.xml.XmlStructureViewBuilderProvider"/>
<extensionPoint name="webBrowserUrlProvider" interface="com.intellij.ide.browsers.WebBrowserUrlProvider" dynamic="true"/>
<extensionPoint name="remoteFileUpdater"
interface="com.intellij.ide.browsers.RemoteFileUpdater"/>
<extensionPoint name="standardResourceProvider" interface="com.intellij.javaee.StandardResourceProvider" dynamic="true"/>
<extensionPoint name="standardResource" beanClass="com.intellij.javaee.StandardResourceEP" dynamic="true"/>
@@ -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<RemoteFileUpdater> EP_NAME = ExtensionPointName.create("com.intellij.remoteFileUpdater");
public abstract boolean updateFile(@NotNull VirtualFile file, Project project, @NotNull Runnable onUpdateFinished);
}