mirror of https://github.com/ppy/osu
Move where clause to next line
This commit is contained in:
parent
9e75ecab4f
commit
10cc6f7885
|
@ -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)
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue