Skip to content

Commit 796ac6e

Browse files
committed
Removed unused method.
1 parent 404fd07 commit 796ac6e

File tree

1 file changed

+0
-22
lines changed
  • Assets/Plugins/CandyCoded.GitStatus/Scripts/CustomEditor

1 file changed

+0
-22
lines changed

Assets/Plugins/CandyCoded.GitStatus/Scripts/CustomEditor/Git.cs

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
// Copyright (c) Scott Doxey. All Rights Reserved. Licensed under the MIT License. See LICENSE in the project root for license information.
22

33
#if UNITY_EDITOR
4-
using System;
54
using System.Collections.Generic;
65
using System.Diagnostics;
7-
using System.Linq;
86
using Debug = UnityEngine.Debug;
97

108
namespace CandyCoded.GitStatus
@@ -77,26 +75,6 @@ public static void CheckoutBranch(string branch)
7775

7876
}
7977

80-
public static string[] AllChanges()
81-
{
82-
83-
var process = Process.Start(new ProcessStartInfo
84-
{
85-
FileName = GitPath,
86-
Arguments = "status --short --untracked-files --porcelain",
87-
UseShellExecute = false,
88-
RedirectStandardOutput = true,
89-
RedirectStandardError = true,
90-
CreateNoWindow = true
91-
});
92-
93-
return process?.StandardOutput
94-
.ReadToEnd()
95-
.Split(new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries)
96-
.ToArray();
97-
98-
}
99-
10078
public static string[] ChangedFiles()
10179
{
10280

0 commit comments

Comments
 (0)