This repository was archived by the owner on Dec 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 8
8
9
9
namespace GitHub . Unity
10
10
{
11
- interface IRepositoryWatcher : IDisposable
11
+ public interface IRepositoryWatcher : IDisposable
12
12
{
13
13
void Start ( ) ;
14
14
void Stop ( ) ;
@@ -23,7 +23,7 @@ interface IRepositoryWatcher : IDisposable
23
23
int CheckAndProcessEvents ( ) ;
24
24
}
25
25
26
- class RepositoryWatcher : IRepositoryWatcher
26
+ public class RepositoryWatcher : IRepositoryWatcher
27
27
{
28
28
private readonly RepositoryPathConfiguration paths ;
29
29
private readonly CancellationToken cancellationToken ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public interface IBackedByCache
13
13
}
14
14
15
15
[ DebuggerDisplay ( "{DebuggerDisplay,nq}" ) ]
16
- sealed class Repository : IEquatable < Repository > , IRepository
16
+ public class Repository : IEquatable < Repository > , IRepository
17
17
{
18
18
private static ILogging Logger = LogHelper . GetLogger < Repository > ( ) ;
19
19
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public interface IRepositoryManager : IDisposable
55
55
bool IsBusy { get ; }
56
56
}
57
57
58
- interface IRepositoryPathConfiguration
58
+ public interface IRepositoryPathConfiguration
59
59
{
60
60
NPath RepositoryPath { get ; }
61
61
NPath DotGitPath { get ; }
@@ -68,7 +68,7 @@ interface IRepositoryPathConfiguration
68
68
bool IsWorktree { get ; }
69
69
}
70
70
71
- class RepositoryPathConfiguration : IRepositoryPathConfiguration
71
+ public class RepositoryPathConfiguration : IRepositoryPathConfiguration
72
72
{
73
73
public RepositoryPathConfiguration ( NPath repositoryPath )
74
74
{
@@ -124,7 +124,7 @@ public RepositoryPathConfiguration(NPath repositoryPath)
124
124
public NPath DotGitCommitEditMsg { get ; }
125
125
}
126
126
127
- class RepositoryManager : IRepositoryManager
127
+ public class RepositoryManager : IRepositoryManager
128
128
{
129
129
private readonly IGitConfig config ;
130
130
private readonly IGitClient gitClient ;
You can’t perform that action at this time.
0 commit comments