diff options
author | James Forsyth <jf2512@att.com> | 2017-09-22 17:13:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-22 17:13:18 +0000 |
commit | b79e5772041795c3986a14521659c544b87434f9 (patch) | |
tree | c8451ba4adadb0b45f1fc7704c0adc0ffb76ff1c | |
parent | e73d85f3e2f7a97cd23e494b7e9d9a1f6f63dc7d (diff) | |
parent | b9bbf9ca774eccdd0961ffd1829ec17e24e25efd (diff) |
Merge "Fixed vOut nullpointer exception"
-rw-r--r-- | aai-core/src/main/java/org/openecomp/aai/dbgen/DataGrooming.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aai-core/src/main/java/org/openecomp/aai/dbgen/DataGrooming.java b/aai-core/src/main/java/org/openecomp/aai/dbgen/DataGrooming.java index 8dca75c5..f2d6a4b8 100644 --- a/aai-core/src/main/java/org/openecomp/aai/dbgen/DataGrooming.java +++ b/aai-core/src/main/java/org/openecomp/aai/dbgen/DataGrooming.java @@ -938,7 +938,7 @@ public class DataGrooming { if( (ghost2 != null) && ghost2FixOn ){ ghost2.remove(); } - else { + else if (vOut != null) { vOut.remove(); } if (singleCommits) { |