From 10cc6f7885d42fe359ea1a839bd9f28911d19438 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 9 Dec 2016 08:18:58 -0500 Subject: [PATCH] Move where clause to next line --- osu.Game/Overlays/Options/SliderOption.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/osu.Game/Overlays/Options/SliderOption.cs b/osu.Game/Overlays/Options/SliderOption.cs index ac49c72e38..010514efcd 100644 --- a/osu.Game/Overlays/Options/SliderOption.cs +++ b/osu.Game/Overlays/Options/SliderOption.cs @@ -16,8 +16,8 @@ namespace osu.Game.Overlays.Options { - public class SliderOption : FlowContainer where T : struct, - IComparable, IFormattable, IConvertible, IComparable, IEquatable + public class SliderOption : FlowContainer + where T : struct, IComparable, IFormattable, IConvertible, IComparable, IEquatable { private SliderBar slider; private SpriteText text; @@ -54,8 +54,8 @@ public SliderOption() }; } - private class OsuSliderBar : SliderBar where U : struct, - IComparable, IFormattable, IConvertible, IComparable, IEquatable + private class OsuSliderBar : SliderBar + where U : struct, IComparable, IFormattable, IConvertible, IComparable, IEquatable { private AudioSample sample; private double lastSample; @@ -152,4 +152,4 @@ protected override void UpdateValue(float value) } } } -} \ No newline at end of file +}