Skip to content

Commit a135baa

Browse files
committed
Changed properties to private.
1 parent 04279f3 commit a135baa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)