mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +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>
|
||||
/// <param name="payloads">The Payloads to append.</param>
|
||||
/// <returns>This object.</returns>
|
||||
public SeString Append(List<Payload> payloads)
|
||||
public SeString Append(IEnumerable<Payload> payloads)
|
||||
{
|
||||
this.Payloads.AddRange(payloads);
|
||||
return this;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue