| | |
| | | |
| | | import org.opends.quicksetup.*; |
| | | |
| | | import static org.forgerock.util.Utils.*; |
| | | import static org.opends.quicksetup.Step.FINISHED; |
| | | import static org.opends.quicksetup.Step.PROGRESS; |
| | | import static org.opends.quicksetup.Step.REVIEW; |
| | |
| | | String arg; |
| | | if (isWindows()) { |
| | | arg = installation.getUninstallBatFile() + getLineBreak().toString() + |
| | | getTab() + getStringFromCollection(paths, |
| | | getLineBreak().toString()); |
| | | getTab() + joinAsString(getLineBreak().toString(), paths); |
| | | } else { |
| | | arg = getStringFromCollection(paths, getLineBreak().toString()); |
| | | arg = joinAsString(getLineBreak().toString(), paths); |
| | | } |
| | | successMsg = |
| | | INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_REMOVE_JARFILES_CLI |
| | |
| | | } else { |
| | | if (getUninstallUserData().getRemoveLibrariesAndTools()) { |
| | | String formattedPath = |
| | | addWordBreaks( |
| | | getStringFromCollection(paths, getLineBreak().toString()), 60, 5); |
| | | addWordBreaks(joinAsString(getLineBreak().toString(), paths), 60, 5); |
| | | successMsg = |
| | | INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_REMOVE_JARFILES |
| | | .get(formattedPath); |