Remove unnecessary braces

This commit is contained in:
Dean Herbert 2018-02-23 14:27:39 +09:00
parent f81eb2de65
commit ff75cf6b75
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
@ -59,7 +59,7 @@ public SkinManager(Storage storage, DatabaseContextFactory contextFactory, IIpcH
{
this.audio = audio;
CurrentSkinInfo.ValueChanged += info => { CurrentSkin.Value = GetSkin(info); };
CurrentSkinInfo.ValueChanged += info => CurrentSkin.Value = GetSkin(info);
CurrentSkin.ValueChanged += skin =>
{
if (skin.SkinInfo != CurrentSkinInfo.Value)