From 1c724280f5f050418b3d56e137ac932c34bd323d Mon Sep 17 00:00:00 2001 From: ryanbodrug-microsoft <56318517+ryanbodrug-microsoft@users.noreply.github.com> Date: Wed, 8 Jul 2020 15:16:17 -0700 Subject: [PATCH] Removing unecessary implementation of IRepository interface as this is implemented by the base class. --- .../Microsoft.Plugin.Program/Storage/PackageRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Storage/PackageRepository.cs b/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Storage/PackageRepository.cs index 2218daded0..f62b0cb3a6 100644 --- a/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Storage/PackageRepository.cs +++ b/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Storage/PackageRepository.cs @@ -14,7 +14,7 @@ namespace Microsoft.Plugin.Program.Storage /// A repository for storing packaged applications such as UWP apps or appx packaged desktop apps. /// This repository will also monitor for changes to the PackageCatelog and update the repository accordingly /// - internal class PackageRepository : ListRepository, IRepository, IProgramRepository + internal class PackageRepository : ListRepository, IProgramRepository { private IStorage> _storage;