mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Mark Craig
22.07.2015 2fa1fc8471ee166294ce8eab740ef2b54f465bed
OPENDJ-2013 Make improvements suggested by Jean-Noël

Thanks to Jean-Noël Rouvignac for pointing out a typo
and a misnamed method in my previous commit for this issue.
3 files modified
6 ■■■■ changed files
opendj-doc-maven-plugin/src/main/java/org/forgerock/opendj/maven/doc/CommandLineTool.java 2 ●●● patch | view | raw | blame | history
opendj-doc-maven-plugin/src/main/java/org/forgerock/opendj/maven/doc/GenerateRefEntriesMojo.java 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/docbkx/admin-guide/chap-server-process.xml 2 ●●● patch | view | raw | blame | history
opendj-doc-maven-plugin/src/main/java/org/forgerock/opendj/maven/doc/CommandLineTool.java
@@ -163,7 +163,7 @@
     * Returns true if the tool is enabled.
     * @return true if the tool is enabled.
     */
    public boolean getEnabled() {
    public boolean isEnabled() {
        return enabled;
    }
opendj-doc-maven-plugin/src/main/java/org/forgerock/opendj/maven/doc/GenerateRefEntriesMojo.java
@@ -98,7 +98,7 @@
        // Prepare a ClassLoader capable of loading the command-line tools.
        final URLClassLoader toolsClassLoader = getBootToolsClassLoader();
        for (CommandLineTool tool : tools) {
            if (tool.getEnabled()) {
            if (tool.isEnabled()) {
                generateManPageForTool(toolsClassLoader, tool);
            }
        }
opendj-server-legacy/src/main/docbkx/admin-guide/chap-server-process.xml
@@ -289,7 +289,7 @@
  </para>
  <para>
   The following example shows two example messages from the recover log.
   The following example shows two example messages from the recovery log.
   The first message is written at the beginning of the recovery process.
   The second message is written at the end of the process.
  </para>