Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 11fcdc3

Browse files
Removing unused parameters
1 parent b65fc78 commit 11fcdc3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/ChangesTreeControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class ChangesTree : Tree<ChangesTreeNode, GitStatusEntryTreeData>
3636

3737
[NonSerialized] public Texture2D FolderIcon;
3838

39-
public void UpdateIcons(Texture2D activeBranchIcon, Texture2D branchIcon, Texture2D folderIcon, Texture2D globeIcon)
39+
public void UpdateIcons(Texture2D folderIcon)
4040
{
4141
var needsLoad = FolderIcon == null;
4242
if (needsLoad)

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/ChangesView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ private void UpdateTreeIcons()
203203
{
204204
if (treeChanges != null)
205205
{
206-
treeChanges.UpdateIcons(Styles.ActiveBranchIcon, Styles.BranchIcon, Styles.FolderIcon, Styles.GlobeIcon);
206+
treeChanges.UpdateIcons(Styles.FolderIcon);
207207
}
208208
}
209209

0 commit comments

Comments
 (0)