From b2a9be81f3cefcba10ac8f9071520af079aea13e Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 22 May 2020 09:30:14 +0200 Subject: [PATCH] Remove unused code --- pkg/store/filesystem/paths.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkg/store/filesystem/paths.go b/pkg/store/filesystem/paths.go index 0ea208f95..515708b24 100644 --- a/pkg/store/filesystem/paths.go +++ b/pkg/store/filesystem/paths.go @@ -28,13 +28,6 @@ func (s Store) buildFilePathFromBundleArgs(extension string, bundleKey string) s return path.Join(extensionFolder, bundleKey+".json") } -// Builds the folder path for storing settings values -func (s Store) buildFolderPathValues() string { - folderPath := path.Join(s.mountPath, folderNameValues) - s.ensureFolderExists(folderPath) - return folderPath -} - // Builds a unique file name from the given settings value func (s Store) buildFilePathFromValue(value *proto.SettingsValue) string { return s.buildFilePathFromValueArgs(value.Identifier.AccountUuid, value.Identifier.Extension, value.Identifier.BundleKey)