From 1217d835a302934742b7c2c8faea8c9edca1603a Mon Sep 17 00:00:00 2001 From: Willem Date: Sun, 28 Sep 2025 01:12:34 +0200 Subject: [PATCH] MF: typo 18 is with a one --- .../manifestor/manifest/WarpManifestX18Import.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nx01-warp-manifestor/src/main/java/love/distributedrebirth/nx01/warp/manifestor/manifest/WarpManifestX18Import.java b/nx01-warp-manifestor/src/main/java/love/distributedrebirth/nx01/warp/manifestor/manifest/WarpManifestX18Import.java index fbc4a83..23a2e0c 100644 --- a/nx01-warp-manifestor/src/main/java/love/distributedrebirth/nx01/warp/manifestor/manifest/WarpManifestX18Import.java +++ b/nx01-warp-manifestor/src/main/java/love/distributedrebirth/nx01/warp/manifestor/manifest/WarpManifestX18Import.java @@ -45,27 +45,27 @@ public final class WarpManifestX18Import { WarpManifestX18HeaderField fieldX18 = null; WarpManifestX18 result = new WarpManifestX18(); for (WarpManifestX8HeaderField attrX8 : manifest.getAttributes()) { - fieldX18 = result.makeAttribute(toFC8(attrX8.getName()), toFC8(attrX8.getBody())); + fieldX18 = result.makeAttribute(toFC18(attrX8.getName()), toFC18(attrX8.getBody())); for (String remark : attrX8.getRemarks()) { - fieldX18.withRemark(toFC8(remark)); + fieldX18.withRemark(toFC18(remark)); } } for (WarpManifestX8Section sectionX8 : manifest.getSections()) { - sectionX18 = result.makeSection(toFC8(sectionX8.getName())); + sectionX18 = result.makeSection(toFC18(sectionX8.getName())); for (String remark : sectionX8.getRemarks()) { - sectionX18.withRemark(toFC8(remark)); + sectionX18.withRemark(toFC18(remark)); } for (WarpManifestX8HeaderField attrX8 : sectionX8.getAttributes()) { - fieldX18 = sectionX18.makeAttribute(toFC8(attrX8.getName()), toFC8(attrX8.getBody())); + fieldX18 = sectionX18.makeAttribute(toFC18(attrX8.getName()), toFC18(attrX8.getBody())); for (String remark : attrX8.getRemarks()) { - fieldX18.withRemark(toFC8(remark)); + fieldX18.withRemark(toFC18(remark)); } } } return result; } - static private PrimordialOctalOrangeJuiceStraw toFC8(String value) { + static private PrimordialOctalOrangeJuiceStraw toFC18(String value) { return PrimordialOctalOrangeString.ioSmurfReadListX18(FourCornerUnicodeImport.lossy().convertToFC18(value)); } }