mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
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:
@@ -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+".");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user