CI fixes.

This commit is contained in:
smoogipooo
2017-06-16 13:09:06 +09:00
parent c8a1933874
commit 874db28478
5 changed files with 2 additions and 8 deletions

View File

@ -7,9 +7,6 @@ using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Objects.Drawables;
using OpenTK;
using System;
using System.Linq;
using osu.Game.Rulesets.Objects.Types;
namespace osu.Game.Rulesets.Timing
{
@ -51,7 +48,7 @@ namespace osu.Game.Rulesets.Timing
/// <param name="controlPoint">The <see cref="MultiplierControlPoint"/> which provides the speed adjustments for this container.</param>
protected SpeedAdjustmentContainer(MultiplierControlPoint controlPoint)
{
this.ControlPoint = controlPoint;
ControlPoint = controlPoint;
RelativeSizeAxes = Axes.Both;
}