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 +3
-4
lines changed
UnityExtension/Assets/Editor/GitHub.Unity/Tasks Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ public override string ToString()
370
370
public WaitHandle AsyncWaitHandle { get { return ( Task as IAsyncResult ) . AsyncWaitHandle ; } }
371
371
public object AsyncState { get { return ( Task as IAsyncResult ) . AsyncState ; } }
372
372
public bool CompletedSynchronously { get { return ( Task as IAsyncResult ) . CompletedSynchronously ; } }
373
- public virtual string Name { get ; set ; }
373
+ public string Name { get ; set ; }
374
374
public virtual TaskAffinity Affinity { get ; set ; }
375
375
private ILogging logger ;
376
376
protected ILogging Logger { get { return logger = logger ?? Logging . GetLogger ( GetType ( ) ) ; } }
Original file line number Diff line number Diff line change @@ -5,12 +5,11 @@ namespace GitHub.Unity
5
5
class FindExecTask : ProcessTask < NPath >
6
6
{
7
7
private readonly string arguments ;
8
- private readonly string name ;
9
8
10
9
public FindExecTask ( string executable , CancellationToken token )
11
10
: base ( token , new FirstLineIsPathOutputProcessor ( ) )
12
11
{
13
- Name = name = DefaultEnvironment . OnWindows ? "where" : "which" ;
12
+ Name = DefaultEnvironment . OnWindows ? "where" : "which" ;
14
13
arguments = executable ;
15
14
}
16
15
Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ private IEnumerable<ProjectConfigurationIssue> EvaluateGitIgnore()
321
321
}
322
322
}
323
323
324
- public override string Name { get { return "Project Evaluation" ; } }
324
+ public string Name { get { return "Project Evaluation" ; } }
325
325
326
326
private enum SerializationSetting
327
327
{
You can’t perform that action at this time.
0 commit comments