1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-20 03:47:28 +08:00

Remove unnecessary braces

This commit is contained in:
Dean Herbert 2018-02-23 14:27:39 +09:00
parent f81eb2de65
commit ff75cf6b75

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 @@ namespace osu.Game.Skinning
{
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)