Skip to content

Commit a3157fb

Browse files
committed
Cleanup
1 parent 893b2b1 commit a3157fb

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

Assets/HOTK/Example Content/UI Scripts/DropdownSaveLoadController.cs

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using System.Linq;
4-
using JetBrains.Annotations;
53
using UnityEngine;
64
using UnityEngine.UI;
75

86
[RequireComponent(typeof(Dropdown))]
97
public class DropdownSaveLoadController : MonoBehaviour
108
{
11-
12-
139
public HOTK_Overlay OverlayToSave;
1410

1511
public InputField UsernameField;
@@ -42,7 +38,6 @@ public class DropdownSaveLoadController : MonoBehaviour
4238
public Button SaveNewButton;
4339
public Button CancelNewButton;
4440

45-
4641
public Dropdown Dropdown
4742
{
4843
get { return _dropdown ?? (_dropdown = GetComponent<Dropdown>()); }
@@ -52,11 +47,6 @@ public Dropdown Dropdown
5247

5348
private static string NewString = "New..";
5449

55-
// Use this for initialization
56-
void Start () {
57-
58-
}
59-
6050
public void OnEnable()
6151
{
6252
if (TwitchSettingsSaver.SavedSettings.Count == 0)
@@ -232,9 +222,4 @@ public void OnSaveNameChanged()
232222
SaveNewButton.interactable = true;
233223
}
234224
}
235-
236-
// Update is called once per frame
237-
void Update () {
238-
239-
}
240225
}

0 commit comments

Comments
 (0)