1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Adapt to removed API

Signed-off-by: Jeff MAURY <jmaury@redhat.com>
This commit is contained in:
Jeff MAURY 2019-04-08 18:12:40 +02:00 committed by Nick Boldt
parent 776a992cf7
commit 48cc96a86b

View file

@ -16,7 +16,6 @@ package org.eclipse.rse.internal.synchronize.filesystem;
import java.io.IOException; import java.io.IOException;
import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPluginDescriptor;
import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status; import org.eclipse.core.runtime.Status;
import org.eclipse.rse.internal.synchronize.RSESyncUtils; import org.eclipse.rse.internal.synchronize.RSESyncUtils;
@ -53,11 +52,9 @@ public class FileSystemPlugin extends AbstractUIPlugin {
/** /**
* Override the standard plugin constructor. * Override the standard plugin constructor.
* *
* @param descriptor
* the plugin descriptor
*/ */
public FileSystemPlugin(IPluginDescriptor descriptor) { public FileSystemPlugin() {
super(descriptor); super();
// record this instance as the singleton // record this instance as the singleton
plugin = this; plugin = this;
} }