mirror of https://github.com/ppy/osu
Remove unused DI beatmap paramater
This commit is contained in:
parent
c43c383abf
commit
9e7182acf0
|
@ -2,12 +2,10 @@
|
|||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Bindables;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
using osu.Framework.Graphics.Video;
|
||||
using osu.Game.Beatmaps;
|
||||
|
||||
namespace osu.Game.Storyboards.Drawables
|
||||
{
|
||||
|
@ -37,7 +35,7 @@ public DrawableStoryboardVideo(StoryboardVideo video)
|
|||
}
|
||||
|
||||
[BackgroundDependencyLoader(true)]
|
||||
private void load(IBindable<WorkingBeatmap> beatmap, TextureStore textureStore)
|
||||
private void load(TextureStore textureStore)
|
||||
{
|
||||
var stream = textureStore.GetStream(Video.Path);
|
||||
|
||||
|
|
Loading…
Reference in New Issue