mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
refactor: use IEnumerable instead of List in SeString.Append
This commit is contained in:
parent
dbdd5a471d
commit
a6ed6dabe4
1 changed files with 1 additions and 1 deletions
|
|
@ -421,7 +421,7 @@ public class SeString
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="payloads">The Payloads to append.</param>
|
/// <param name="payloads">The Payloads to append.</param>
|
||||||
/// <returns>This object.</returns>
|
/// <returns>This object.</returns>
|
||||||
public SeString Append(List<Payload> payloads)
|
public SeString Append(IEnumerable<Payload> payloads)
|
||||||
{
|
{
|
||||||
this.Payloads.AddRange(payloads);
|
this.Payloads.AddRange(payloads);
|
||||||
return this;
|
return this;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue