Skip to content

Commit 78983ee

Browse files
Format
1 parent 9784915 commit 78983ee

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Maple2.File.Parser/Xml/Table/PvpRankingDuelMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Xml.Serialization;
1+
using System.Xml.Serialization;
22

33
namespace Maple2.File.Parser.Xml.Table;
44

Maple2.File.Tests/SanitizerBomTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Text;
1+
using System.Text;
22
using System.Xml.Serialization;
33
using Microsoft.VisualStudio.TestTools.UnitTesting;
44

@@ -41,7 +41,7 @@ public void TestParseXmlWithoutBom() {
4141
public void TestParseXmlWithBom() {
4242
byte[] bom = [0xEF, 0xBB, 0xBF];
4343
byte[] content = Encoding.UTF8.GetBytes(XML_CONTENT);
44-
byte[] data = [..bom, ..content];
44+
byte[] data = [.. bom, .. content];
4545

4646
// Simulate M2dReader.GetString() which strips BOM
4747
string xml = Encoding.Default.GetString(data);

0 commit comments

Comments
 (0)