Fixed CrcHelper's derivation of the short string version

- The short string should always be lowercase


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@15909 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2009-08-25 15:28:02 +00:00
parent e39e8bf3f1
commit 00e2edb3de

View File

@@ -104,7 +104,7 @@ public class CrcHelper
int valueLen = valueLowerCase.length();
if (valueLen < dataLength)
{
valueShort = value;
valueShort = valueLowerCase;
}
else if (useCharsFromStart)
{