Fix for issue 2176.
Update the function that created the Message to be displayed to return a String instead of a Message object.
| | |
| | | * @param userInstallData the DataOptions of the user. |
| | | * @return the localized string describing the DataOptions chosen by the user. |
| | | */ |
| | | private Message getDataDisplayString(UserData userInstallData) |
| | | private String getDataDisplayString(UserData userInstallData) |
| | | { |
| | | Message msg; |
| | | |
| | |
| | | msg = INFO_REVIEW_REPLICATE_SUFFIX.get(buf.toString()); |
| | | } |
| | | |
| | | return msg; |
| | | return msg.toString(); |
| | | } |
| | | /** |
| | | * Returns the String representing the replication port configuration. |