From 77687fe7f368e9d98043f7741a5a857a19257c39 Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Sun, 26 May 2019 17:00:30 -0500 Subject: [PATCH] (maint) reorder outdated in interface --- .../services/INugetService.cs | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/chocolatey/infrastructure.app/services/INugetService.cs b/src/chocolatey/infrastructure.app/services/INugetService.cs index c1fb95074a..bcb7179a4c 100644 --- a/src/chocolatey/infrastructure.app/services/INugetService.cs +++ b/src/chocolatey/infrastructure.app/services/INugetService.cs @@ -1,4 +1,4 @@ -// Copyright © 2017 - 2018 Chocolatey Software, Inc +// Copyright © 2017 - 2019 Chocolatey Software, Inc // Copyright © 2011 - 2017 RealDimensions Software, LLC // // Licensed under the Apache License, Version 2.0 (the "License"); @@ -16,12 +16,18 @@ namespace chocolatey.infrastructure.app.services { - using chocolatey.infrastructure.results; - using configuration; - using System.Collections.Concurrent; + using System.Collections.Concurrent; + using configuration; + using results; - public interface INugetService : ISourceRunner + public interface INugetService : ISourceRunner { + /// + /// Get outdated packages + /// + /// The configuration. + ConcurrentDictionary get_outdated(ChocolateyConfiguration config); + /// /// Run pack in noop mode. /// @@ -52,10 +58,5 @@ public interface INugetService : ISourceRunner /// Name of the package. void remove_rollback_directory_if_exists(string packageName); - /// - /// Get outdated packages - /// - /// The configuration. - ConcurrentDictionary get_outdated(ChocolateyConfiguration config); } }