Skip to content
Snippets Groups Projects
Commit 48b13ada authored by tjc's avatar tjc
Browse files

fix for timestamp being null

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@4304 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 16f6af2c
Branches
Tags
No related merge requests found
......@@ -846,7 +846,7 @@ public class DatabaseDocument extends Document
{
Timestamp now = dao.getTimeLastModified(schema, uniquename);
if(now != null)
if(now != null && timestamp != null)
{
now.setNanos(0);
timestamp.setNanos(0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment