Move where clause to next line

This commit is contained in:
Drew DeVault 2016-12-09 08:18:58 -05:00
parent 9e75ecab4f
commit 10cc6f7885
1 changed files with 5 additions and 5 deletions

View File

@ -16,8 +16,8 @@
namespace osu.Game.Overlays.Options
{
public class SliderOption<T> : FlowContainer where T : struct,
IComparable, IFormattable, IConvertible, IComparable<T>, IEquatable<T>
public class SliderOption<T> : FlowContainer
where T : struct, IComparable, IFormattable, IConvertible, IComparable<T>, IEquatable<T>
{
private SliderBar<T> slider;
private SpriteText text;
@ -54,8 +54,8 @@ public SliderOption()
};
}
private class OsuSliderBar<U> : SliderBar<U> where U : struct,
IComparable, IFormattable, IConvertible, IComparable<U>, IEquatable<U>
private class OsuSliderBar<U> : SliderBar<U>
where U : struct, IComparable, IFormattable, IConvertible, IComparable<U>, IEquatable<U>
{
private AudioSample sample;
private double lastSample;
@ -152,4 +152,4 @@ protected override void UpdateValue(float value)
}
}
}
}
}