From a72efc14cd0ce75cd67f434435eecabc7ff8fb17 Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Tue, 26 May 2020 21:36:10 +0200 Subject: [PATCH] update from master --- supported/Text.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/supported/Text.java b/supported/Text.java index 252aca0..45d970a 100644 --- a/supported/Text.java +++ b/supported/Text.java @@ -227,9 +227,12 @@ class Text extends BasicSupport { @SuppressWarnings("resource") // cannot close, or we loose getInput()! Scanner scan = new Scanner(getInput(), "UTF-8"); scan.useDelimiter("\\n"); - scan.next(); // title - scan.next(); // author - scan.next(); // date or empty + if (scan.hasNext()) + scan.next(); // title + if (scan.hasNext()) + scan.next(); // author + if (scan.hasNext()) + scan.next(); // date or empty Boolean inChap = null; String line = ""; while (scan.hasNext()) { -- 2.27.0