Added space between colon and version number in MMT error message.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@111312 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2015-09-02 14:22:57 +00:00
parent bb47289edf
commit 465df6aae2

View File

@@ -157,11 +157,11 @@ public class WarHelperImpl implements WarHelper
{
if(warVersion.compareTo(installingModuleDetails.getRepoVersionMin())==-1) {
throw new ModuleManagementToolException("The module ("+installingModuleDetails.getTitle()+") must be installed on a war version equal to or greater than "
+installingModuleDetails.getRepoVersionMin()+". This war is version:"+warVersion+".");
+installingModuleDetails.getRepoVersionMin()+". This war is version: "+warVersion+".");
}
if(warVersion.compareTo(installingModuleDetails.getRepoVersionMax())==1) {
throw new ModuleManagementToolException("The module ("+installingModuleDetails.getTitle()+") cannot be installed on a war version greater than "
+installingModuleDetails.getRepoVersionMax()+". This war is version:"+warVersion+".");
+installingModuleDetails.getRepoVersionMax()+". This war is version: "+warVersion+".");
}
}