Fixing identation and spaces in a few files.

This commit is contained in:
Livar Cunha 2016-06-09 21:08:55 -07:00
parent f27330a09b
commit bcadd6ff01
3 changed files with 11 additions and 11 deletions

View file

@ -3,8 +3,8 @@
namespace Microsoft.DotNet.Configurer namespace Microsoft.DotNet.Configurer
{ {
public interface INuGetCachePrimer public interface INuGetCachePrimer
{ {
void PrimeCache(); void PrimeCache();
} }
} }

View file

@ -3,10 +3,10 @@
namespace Microsoft.DotNet.Configurer namespace Microsoft.DotNet.Configurer
{ {
public interface INuGetCacheSentinel public interface INuGetCacheSentinel
{ {
bool Exists(); bool Exists();
void CreateIfNotExists(); void CreateIfNotExists();
} }
} }