Remove redundant/overwritten specifications

This commit is contained in:
Salman Ahmed 2022-07-29 15:40:56 +03:00
parent 905bbdc8ee
commit 3b1a76b190
1 changed files with 2 additions and 11 deletions

View File

@ -69,17 +69,8 @@ private void setHitObjects()
this.ChildrenOfType<SongProgress>().ForEach(progress => progress.Objects = objects);
}
protected override Drawable CreateDefaultImplementation() => new DefaultSongProgress
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
};
protected override Drawable CreateDefaultImplementation() => new DefaultSongProgress();
protected override Drawable CreateLegacyImplementation() => new LegacySongProgress
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
};
protected override Drawable CreateLegacyImplementation() => new LegacySongProgress();
}
}