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

Commit 0953865

Browse files
authored
Merge pull request #394 from github-for-unity/fixes/what-pragma-warning
Removing pragma disable of 649
2 parents d961833 + a07d019 commit 0953865

File tree

4 files changed

+1
-10
lines changed

4 files changed

+1
-10
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#pragma warning disable 649
2-
31
using System;
42
using System.Linq;
53
using UnityEditor;

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#pragma warning disable 649
2-
31
using System;
42
using System.Collections.Generic;
53
using System.IO;

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#pragma warning disable 649
2-
31
using System;
42
using System.Collections.Generic;
53
using System.Linq;
@@ -42,7 +40,6 @@ class HistoryView : Subview
4240
[NonSerialized] private int selectionIndex;
4341
[NonSerialized] private bool logHasChanged;
4442
[NonSerialized] private bool useScrollTime;
45-
[NonSerialized] private bool isBusy;
4643

4744
[SerializeField] private Vector2 detailsScroll;
4845
[SerializeField] private Vector2 scroll;
@@ -650,7 +647,7 @@ private void DrawTimelineRectAroundIconRect(Rect parentRect, Rect iconRect)
650647

651648
public override bool IsBusy
652649
{
653-
get { return isBusy; }
650+
get { return false; }
654651
}
655652

656653
private float EntryHeight

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#pragma warning disable 649
2-
31
using System;
42
using System.Linq;
53
using UnityEditor;

0 commit comments

Comments
 (0)