mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -104,7 +104,7 @@ public class CrcHelper
|
|||||||
int valueLen = valueLowerCase.length();
|
int valueLen = valueLowerCase.length();
|
||||||
if (valueLen < dataLength)
|
if (valueLen < dataLength)
|
||||||
{
|
{
|
||||||
valueShort = value;
|
valueShort = valueLowerCase;
|
||||||
}
|
}
|
||||||
else if (useCharsFromStart)
|
else if (useCharsFromStart)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user