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

Commit a07d019

Browse files
Inline isBusy value of false that is never assigned to
1 parent b933b53 commit a07d019

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class HistoryView : Subview
4040
[NonSerialized] private int selectionIndex;
4141
[NonSerialized] private bool logHasChanged;
4242
[NonSerialized] private bool useScrollTime;
43-
[NonSerialized] private bool isBusy;
4443

4544
[SerializeField] private Vector2 detailsScroll;
4645
[SerializeField] private Vector2 scroll;
@@ -648,7 +647,7 @@ private void DrawTimelineRectAroundIconRect(Rect parentRect, Rect iconRect)
648647

649648
public override bool IsBusy
650649
{
651-
get { return isBusy; }
650+
get { return false; }
652651
}
653652

654653
private float EntryHeight

0 commit comments

Comments
 (0)