From 0479ec851a894916451ec3f6fdcb433386e72625 Mon Sep 17 00:00:00 2001 From: Nico Mack Date: Fri, 2 Mar 2018 15:11:13 +0100 Subject: [PATCH] Minor internal API changes --- .../tui/marker/builder/BaseInfoMarkerBuilder.java | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/CPS/src/lu/list/itis/dkd/tui/marker/builder/BaseInfoMarkerBuilder.java b/CPS/src/lu/list/itis/dkd/tui/marker/builder/BaseInfoMarkerBuilder.java index 51edb88..813eb0c 100644 --- a/CPS/src/lu/list/itis/dkd/tui/marker/builder/BaseInfoMarkerBuilder.java +++ b/CPS/src/lu/list/itis/dkd/tui/marker/builder/BaseInfoMarkerBuilder.java @@ -43,12 +43,12 @@ public abstract class BaseInfoMarkerBuilder> // --------------------------------------------------------------------------- /** - * Constructor initializing all fields from an {@link Element} containing as child elements all - * the information on fields to initialize. + * Constructor initializing all fields from an {@link Element} containing as child elements all the + * information on fields to initialize. * * @param rootElement - * The element harbouring, on child nodes, the necessary information to initialize all - * fields of the builder. + * The element harbouring, on child nodes, the necessary information to initialize all fields + * of the builder. * @throws BuildException * Thrown when any of the fields fail to populate due to an error in reading information * from the XML file. @@ -78,8 +78,8 @@ public abstract class BaseInfoMarkerBuilder> * @param callback * @throws BuildException */ - protected void buildFromBootstrap(@Nullable Element rootElement, BootstrapContext context, BootstrapCallback callback) throws BuildException { - super.buildFromBootstrap(rootElement, context, callback); + private void buildFromBootstrap(@Nullable Element rootElement, BootstrapContext context, BootstrapCallback callback) throws BuildException { + // super.buildFromBootstrap(rootElement, context, callback); Element informationElement = rootElement.getChild(Externalization.INFORMATION); if (informationElement != null) { @@ -92,8 +92,6 @@ public abstract class BaseInfoMarkerBuilder> } } - - // --------------------------------------------------------------------------- // *************************************************************************** // * Class Body * -- GitLab