clean up remaining non-generic GetValue uses

This commit is contained in:
Chris Forbes
2011-07-09 22:41:37 +12:00
committed by Paul Chote
parent 913ca89d4f
commit 60a3f170ab
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ namespace OpenRA.Widgets
public static T Get<T>(string key)
{
return (T)FieldLoader.GetValue( key, typeof(T), data[key] );
return FieldLoader.GetValue<T>( key, data[key] );
}
}
}