From 448ae49fa471277dfa47afb2227a1b5eb6bbe72e Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Sat, 25 Mar 2023 23:27:55 +0100 Subject: [PATCH] webgui: remove unused code (fixes issue reported by the unused linter) --- fs/rc/webgui/plugins.go | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/fs/rc/webgui/plugins.go b/fs/rc/webgui/plugins.go index c51eeab57..8784ae465 100644 --- a/fs/rc/webgui/plugins.go +++ b/fs/rc/webgui/plugins.go @@ -152,33 +152,6 @@ func (p *Plugins) addPlugin(pluginName string, packageJSONPath string) (err erro return nil } -func (p *Plugins) addTestPlugin(pluginName string, testURL string, handlesType []string) (err error) { - p.mutex.Lock() - defer p.mutex.Unlock() - err = p.readFromFile() - if err != nil { - return err - } - - var pkgJSON = PackageJSON{ - Name: pluginName, - TestURL: testURL, - Rclone: RcloneConfig{ - HandlesType: handlesType, - Test: true, - }, - } - - p.LoadedPlugins[pluginName] = pkgJSON - - err = p.writeToFile() - if err != nil { - return err - } - - return nil -} - func (p *Plugins) writeToFile() (err error) { availablePluginsJSON := filepath.Join(pluginsConfigPath, p.fileName)