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.
| | |
| | | * Returns true if the tool is enabled. |
| | | * @return true if the tool is enabled. |
| | | */ |
| | | public boolean getEnabled() { |
| | | public boolean isEnabled() { |
| | | return enabled; |
| | | } |
| | | |
| | |
| | | // 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); |
| | | } |
| | | } |
| | |
| | | </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> |