Skip to content

Commit

Permalink
(maint) reorder outdated in interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed May 26, 2019
1 parent d01b58b commit 77687fe
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions src/chocolatey/infrastructure.app/services/INugetService.cs
Original file line number Diff line number Diff line change
@@ -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");
Expand All @@ -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
{
/// <summary>
/// Get outdated packages
/// </summary>
/// <param name="config">The configuration.</param>
ConcurrentDictionary<string, PackageResult> get_outdated(ChocolateyConfiguration config);

/// <summary>
/// Run pack in noop mode.
/// </summary>
Expand Down Expand Up @@ -52,10 +58,5 @@ public interface INugetService : ISourceRunner
/// <param name="packageName">Name of the package.</param>
void remove_rollback_directory_if_exists(string packageName);

/// <summary>
/// Get outdated packages
/// </summary>
/// <param name="config">The configuration.</param>
ConcurrentDictionary<string, PackageResult> get_outdated(ChocolateyConfiguration config);
}
}

0 comments on commit 77687fe

Please sign in to comment.