1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:23:00 +08:00

use var for list declaration

Co-Authored-By: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Liam DeVoe 2020-03-20 14:37:31 -04:00 committed by GitHub
parent 52469fccbe
commit 3d95592130
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ namespace osu.Game.Rulesets.Mods
{
get
{
List<string> attributes = new List<string>();
var attributes = new List<string>();
foreach ((SettingSourceAttribute attr, System.Reflection.PropertyInfo property) in this.GetOrderedSettingsSourceProperties())
{