mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 23:43:06 +00:00
[DS-707] Fix string comparisons
git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5462 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -146,7 +146,7 @@ public final class CheckerCommand
|
||||
BitstreamInfo info = checkBitstream(id);
|
||||
|
||||
if (reportVerbose
|
||||
|| (info.getChecksumCheckResult() != ChecksumCheckResults.CHECKSUM_MATCH))
|
||||
|| !ChecksumCheckResults.CHECKSUM_MATCH.equals(info.getChecksumCheckResult()))
|
||||
{
|
||||
collector.collect(info);
|
||||
}
|
||||
|
Reference in New Issue
Block a user