Skip to content

Commit 94f4cb1

Browse files
committed
Changed properties to private.
1 parent 93ecfc0 commit 94f4cb1

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ public static class Git
1313
{
1414

1515
#if UNITY_EDITOR_WIN
16-
public static string GitPath => @"C:\Program Files\Git\bin\git.exe";
16+
private static string GitPath => @"C:\Program Files\Git\bin\git.exe";
1717
#else
18-
public static string GitPath => "/usr/local/bin/git";
18+
private static string GitPath => "/usr/local/bin/git";
1919
#endif
2020

2121
private static Process GenerateProcess(string path, string arguments)

0 commit comments

Comments
 (0)