Skip to content

Commit fe99363

Browse files
authored
Merge pull request #145 from overture-stack/feature/138-index-info
if info is null return
2 parents 408372e + 7b40d07 commit fe99363

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: maestro-domain/src/main/java/bio/overture/maestro/domain/entities/indexing/analysis/AnalysisCentricFile.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ public void setInfo(String key, Object value) {
5151

5252
public void replaceInfo(Map<String, Object> data) {
5353
if (data == null) {
54-
this.info.clear();;
54+
this.info.clear();
55+
return;
5556
}
5657
this.info.clear();
5758
this.info.putAll(data);

0 commit comments

Comments
 (0)