mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
CA1715: use prefix for generic parameters.
This commit is contained in:
@ -102,7 +102,7 @@ namespace osu.Game.IO.Legacy
|
||||
}
|
||||
|
||||
/// <summary> Writes a generic IDictionary to the buffer. </summary>
|
||||
public void Write<T, U>(IDictionary<T, U> d)
|
||||
public void Write<TKey, TValue>(IDictionary<TKey, TValue> d)
|
||||
{
|
||||
if (d == null)
|
||||
{
|
||||
@ -112,7 +112,7 @@ namespace osu.Game.IO.Legacy
|
||||
{
|
||||
Write(d.Count);
|
||||
|
||||
foreach (KeyValuePair<T, U> kvp in d)
|
||||
foreach (KeyValuePair<TKey, TValue> kvp in d)
|
||||
{
|
||||
WriteObject(kvp.Key);
|
||||
WriteObject(kvp.Value);
|
||||
|
Reference in New Issue
Block a user