Skip to content
Snippets Groups Projects
Commit bddf8b6c authored by felmer's avatar felmer
Browse files

BIS-17, SP-53: bug fixed

SVN: 25232
parent 4391b4e9
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,7 @@ public class DataSetPathInfo ...@@ -90,7 +90,7 @@ public class DataSetPathInfo
public void setChecksumCRC32(Long checksumCRC32) public void setChecksumCRC32(Long checksumCRC32)
{ {
this.checksumCRC32 = checksumCRC32 & 0xffffffffL; this.checksumCRC32 = checksumCRC32 == null ? null : checksumCRC32 & 0xffffffffL;
} }
public Date getLastModified() public Date getLastModified()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment