Skip to content

Commit

Permalink
fix(ConsoleViewer): remove unnecessary struct
Browse files Browse the repository at this point in the history
The `Log` struct was not being used and causing a compile warning.
It has now been deleted.
  • Loading branch information
thestonefox committed Sep 8, 2016
1 parent b5f6513 commit 278c4c9
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Assets/VRTK/Prefabs/Resources/Scripts/VRTK_ConsoleViewer.cs
Expand Up @@ -26,13 +26,6 @@ public class VRTK_ConsoleViewer : MonoBehaviour
[Tooltip("The colour of the text for an exception log message.")]
public Color exceptionMessage = Color.red;

private struct Log
{
public string message;
public string stackTrace;
public LogType type;
}

private Dictionary<LogType, Color> logTypeColors;
private ScrollRect scrollWindow;
private RectTransform consoleRect;
Expand Down

0 comments on commit 278c4c9

Please sign in to comment.