A game framework written with osu! in mind.

Fix formatting and remove unnecessary using

Jacob 2ce0a831 7a3259d3

+1 -2
+1 -2
osu.Framework/Graphics/Shaders/Uniform.cs
··· 1 1 // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2 2 // See the LICENCE file in the repository root for full licence text. 3 3 4 - using System.Collections.Generic; 5 4 using osu.Framework.Graphics.OpenGL; 6 5 using System; 7 6 ··· 46 45 if (newValue.Equals(val)) 47 46 return; 48 47 49 - val= newValue; 48 + val = newValue; 50 49 HasChanged = true; 51 50 52 51 if (Owner.IsBound)