We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 510c334 commit bd5d775Copy full SHA for bd5d775
1 file changed
SpotifyAPI/SpoitfyLocalAPI/SpotifyAPI.cs
@@ -11,17 +11,13 @@ public class SpotifyLocalAPIClass
11
SpotifyMusicHandler mh;
12
RemoteHandler rh;
13
SpotifyEventHandler eh;
14
- static bool betaMode = false;
+ static bool betaMode;
15
16
- public SpotifyLocalAPIClass()
+ public SpotifyLocalAPIClass(bool betaMode = false)
17
{
18
rh = RemoteHandler.GetInstance();
19
mh = new SpotifyMusicHandler();
20
eh = new SpotifyEventHandler(this, mh);
21
- }
22
-
23
- public SpotifyLocalAPIClass(bool betaMode) : this()
24
- {
25
SpotifyLocalAPIClass.betaMode = betaMode;
26
}
27
0 commit comments