[MRM-446] search by checksum was not working due to a case mismatch

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@562380 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2007-08-03 08:10:29 +00:00
parent b3f3de4a98
commit a40c80e2e1
1 changed files with 7 additions and 7 deletions

View File

@ -73,7 +73,7 @@ public class ArtifactsByChecksumConstraint
} }
declParams = new String[]{"String desiredChecksum"}; declParams = new String[]{"String desiredChecksum"};
params = new Object[]{ desiredChecksum }; params = new Object[]{desiredChecksum.toLowerCase()};
} }
public String getSortColumn() public String getSortColumn()