Browse Source

Minor refactor

sujith 1 month ago
parent
commit
f0bb07b92f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      Assets/Better Git/Arbitrator/Editor/GUI/ArbitratorWindow.cs

+ 1 - 2
Assets/Better Git/Arbitrator/Editor/GUI/ArbitratorWindow.cs

@@ -4,7 +4,6 @@
 // responsibility is to draw the UI based on the state provided by the
 // ArbitratorController.
 
-using System;
 using System.Linq;
 using UnityEngine;
 using UnityEditor;
@@ -27,7 +26,7 @@ namespace Terra.Arbitrator.GUI
         [MenuItem("Version Control/Better Git")]
         public static void ShowWindow()
         {
-            var type = Type.GetType(DockNextTo);
+            var type = System.Type.GetType(DockNextTo);
             var window = GetWindow<ArbitratorWindow>(type);
             window.titleContent = new GUIContent("Better Git", EditorGUIUtility.IconContent("d_UnityEditor.VersionControl").image);
         }