1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 21:43:22 +08:00

TODO comment and deleted repeating lines

This commit is contained in:
Andrey Zavadskiy 2016-12-21 01:05:10 +03:00
parent c7de449713
commit bba4c46ae3
2 changed files with 1 additions and 2 deletions

View File

@ -152,8 +152,6 @@ namespace osu.Game.Configuration
Set(OsuConfig.HiddenShowFirstApproach, true); Set(OsuConfig.HiddenShowFirstApproach, true);
Set(OsuConfig.ComboColourSliderBall, true); Set(OsuConfig.ComboColourSliderBall, true);
Set(OsuConfig.AlternativeChatFont, false); Set(OsuConfig.AlternativeChatFont, false);
Set(OsuConfig.Password, string.Empty);
Set(OsuConfig.Username, string.Empty);
Set(OsuConfig.DisplayStarsMaximum, 10.0, 0.0, 10.0); Set(OsuConfig.DisplayStarsMaximum, 10.0, 0.0, 10.0);
Set(OsuConfig.DisplayStarsMinimum, 0.0, 0.0, 10.0); Set(OsuConfig.DisplayStarsMinimum, 0.0, 0.0, 10.0);
Set(OsuConfig.AudioDevice, string.Empty); Set(OsuConfig.AudioDevice, string.Empty);

View File

@ -31,6 +31,7 @@ namespace osu.Game.Overlays.Options.General
private void performLogout() private void performLogout()
{ {
api.Logout(); api.Logout();
//TODO: set null strings in username, password, token
} }
public void APIStateChanged(APIAccess api, APIState state) public void APIStateChanged(APIAccess api, APIState state)