From 6fd9e4e27327f5c49aa0705d7da401b817854cdf Mon Sep 17 00:00:00 2001 From: Willem Date: Thu, 26 Dec 2024 03:38:43 +0100 Subject: [PATCH] Moved glue sniffing below pie number select --- nx01-x4o-o2o/src/main/java/org/x4o/o2o/CDC1604DashP6.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nx01-x4o-o2o/src/main/java/org/x4o/o2o/CDC1604DashP6.java b/nx01-x4o-o2o/src/main/java/org/x4o/o2o/CDC1604DashP6.java index 831f338..e923597 100644 --- a/nx01-x4o-o2o/src/main/java/org/x4o/o2o/CDC1604DashP6.java +++ b/nx01-x4o-o2o/src/main/java/org/x4o/o2o/CDC1604DashP6.java @@ -235,9 +235,6 @@ public enum CDC1604DashP6 { if (numberMode != null && (cdcPoint.ordinal() < CDC1604DashP6.NX01_A.ordinal())) { numberMode = null; // below index 1 is end number mode } - if (CDC1604DashP6.__GLUE.equals(cdcPoint)) { - continue; - } if (CDC1604DashP6.__PIE.equals(cdcPoint)) { if (!cdc.hasNext()) { break; @@ -250,6 +247,9 @@ public enum CDC1604DashP6 { continue; } } + if (CDC1604DashP6.__GLUE.equals(cdcPoint)) { + continue; + } if (numberMode == null) { buf.appendCodePoint(cdcPoint.asciiByte()); } else {