Skip to content

Commit e7cffa7

Browse files
Stephen HodgsonStephen Hodgson
authored andcommitted
Marked DisplayKeywords obsolete due to dependency on KeywordManager.
1 parent a20755b commit e7cffa7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Assets/HoloToolkit/Input/Tests/Scripts/DisplayKeywords.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License. See LICENSE in the project root for license information.
33

4+
using System;
45
using UnityEngine;
56
using UnityEngine.UI;
67

78
namespace HoloToolkit.Unity.InputModule.Tests
89
{
10+
[Obsolete("See DisplaySpeechKeywords for updated usage.")]
911
public class DisplayKeywords : MonoBehaviour
1012
{
1113
public KeywordManager keywordManager;
1214
public Text textPanel;
1315

14-
void Start()
16+
private void Start()
1517
{
1618
if (keywordManager == null || textPanel == null)
1719
{

Assets/HoloToolkit/Input/Tests/Scripts/DisplaySpeechKeywords.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Licensed under the MIT License. See LICENSE in the project root for license information.
33

44
using UnityEngine;
5-
using UnityEngine.UI;
65

76
namespace HoloToolkit.Unity.InputModule.Tests
87
{

0 commit comments

Comments
 (0)