Skip to content

Commit

Permalink
Fix CI issues pass #2.
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Apr 2, 2017
1 parent 833138c commit 07f180a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Framework/Graphics/Containers/AsyncLoadContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class AsyncLoadContainer : Container
public AsyncLoadContainer(Container content)
{
if (content == null)
throw new ArgumentNullException(nameof(content), $@"{nameof(AsyncLoadContainer)} required non-null {content}.");
throw new ArgumentNullException(nameof(content), $@"{nameof(AsyncLoadContainer)} required non-null {nameof(content)}.");

this.content = content;

Expand Down
1 change: 1 addition & 0 deletions osu.Framework/Graphics/Containers/Container.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using OpenTK;
using osu.Framework.Graphics.Primitives;
using osu.Framework.Graphics.OpenGL;
using osu.Framework.Graphics.Sprites;
using OpenTK.Graphics;
using osu.Framework.Graphics.Shaders;
using osu.Framework.Extensions.IEnumerableExtensions;
Expand Down

0 comments on commit 07f180a

Please sign in to comment.