This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments