From 983eb6adedec08ecbf4d91c37453439a5a5b84c5 Mon Sep 17 00:00:00 2001 From: Jeff MAURY Date: Mon, 8 Apr 2019 18:12:40 +0200 Subject: [PATCH] Adapt to removed API Signed-off-by: Jeff MAURY --- .../internal/synchronize/filesystem/FileSystemPlugin.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.importexport/src/org/eclipse/rse/internal/synchronize/filesystem/FileSystemPlugin.java b/rse/plugins/org.eclipse.rse.importexport/src/org/eclipse/rse/internal/synchronize/filesystem/FileSystemPlugin.java index 51e7f37d815..c93b816118b 100644 --- a/rse/plugins/org.eclipse.rse.importexport/src/org/eclipse/rse/internal/synchronize/filesystem/FileSystemPlugin.java +++ b/rse/plugins/org.eclipse.rse.importexport/src/org/eclipse/rse/internal/synchronize/filesystem/FileSystemPlugin.java @@ -16,7 +16,6 @@ package org.eclipse.rse.internal.synchronize.filesystem; import java.io.IOException; import org.eclipse.core.runtime.CoreException; -import org.eclipse.core.runtime.IPluginDescriptor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.rse.internal.synchronize.RSESyncUtils; @@ -53,11 +52,9 @@ public class FileSystemPlugin extends AbstractUIPlugin { /** * Override the standard plugin constructor. * - * @param descriptor - * the plugin descriptor */ - public FileSystemPlugin(IPluginDescriptor descriptor) { - super(descriptor); + public FileSystemPlugin() { + super(); // record this instance as the singleton plugin = this; }