From 8220f85c0e270977060212daab6b0e0e0693a0bb Mon Sep 17 00:00:00 2001 From: Martin Goik <goik@hdm-stuttgart.de> Date: Tue, 1 Dec 2015 14:58:02 +0100 Subject: [PATCH] Missing method name --- Doc/Sda1/dom.xml | 3 ++- .../main/java/de/hdm_stuttgart/mi/sda1/nocast/DomXpath.java | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Doc/Sda1/dom.xml b/Doc/Sda1/dom.xml index e462e68dc..c7b2964d1 100644 --- a/Doc/Sda1/dom.xml +++ b/Doc/Sda1/dom.xml @@ -1415,7 +1415,8 @@ public class Article2Html { * @throws JDOMException General parsing fault * @throws IOException file access problem */ - public void Optional<String> (final String xhtmlFilename) throws JDOMException, IOException { + public Optional<String> process(final String xhtmlFilename) + throws JDOMException, IOException { final Document htmlInput = builder.build(xhtmlFilename); <co linkends="programlisting_java_searchimg_parse_co" diff --git a/P/Sda1/NoCast/src/main/java/de/hdm_stuttgart/mi/sda1/nocast/DomXpath.java b/P/Sda1/NoCast/src/main/java/de/hdm_stuttgart/mi/sda1/nocast/DomXpath.java index acd9cf7e1..42cad9734 100644 --- a/P/Sda1/NoCast/src/main/java/de/hdm_stuttgart/mi/sda1/nocast/DomXpath.java +++ b/P/Sda1/NoCast/src/main/java/de/hdm_stuttgart/mi/sda1/nocast/DomXpath.java @@ -29,7 +29,8 @@ public class DomXpath { * @throws JDOMException General parsing fault * @throws IOException file access problem */ - public Optional<String> process(final String xhtmlFilename) throws JDOMException, IOException { + public Optional<String> process(final String xhtmlFilename) + throws JDOMException, IOException { final Document htmlInput = builder.build(xhtmlFilename); -- GitLab