Skip to content
Snippets Groups Projects
Commit 8220f85c authored by Goik Martin's avatar Goik Martin
Browse files

Missing method name

parent 4b7fcd76
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment