Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit df22128

Browse files
committed
🔥 Useless spaces
1 parent 768c80b commit df22128

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/GitHub.App/Services/ModelService.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ IObservable<IReadOnlyList<IRepositoryModel>> GetUserRepositories(RepositoryType
185185
"Retrieving '{0}' user repositories failed because user is not stored in the cache.",
186186
repositoryType);
187187
log.Error(message, e);
188-
return Observable.Return(new IRepositoryModel[] { });
188+
return Observable.Return(new IRepositoryModel[] {});
189189
});
190190
}
191191

@@ -223,7 +223,7 @@ IObservable<IReadOnlyList<IRepositoryModel>> GetOrganizationRepositories(string
223223
"Retrieveing '{0}' org repositories failed because user is not stored in the cache.",
224224
organization);
225225
log.Error(message, e);
226-
return Observable.Return(new IRepositoryModel[] { });
226+
return Observable.Return(new IRepositoryModel[] {});
227227
});
228228
}
229229

@@ -314,8 +314,7 @@ public static RepositoryCacheItem Create(Repository apiRepository)
314314
return new RepositoryCacheItem(apiRepository);
315315
}
316316

317-
public RepositoryCacheItem()
318-
{ }
317+
public RepositoryCacheItem() {}
319318

320319
public RepositoryCacheItem(Repository apiRepository)
321320
{
@@ -345,7 +344,7 @@ public static PullRequestCacheItem Create(PullRequest pr)
345344
return new PullRequestCacheItem(pr);
346345
}
347346

348-
public PullRequestCacheItem() { }
347+
public PullRequestCacheItem() {}
349348
public PullRequestCacheItem(PullRequest pr)
350349
{
351350
Title = pr.Title;

0 commit comments

Comments
 (0)