Skip to content

Commit

Permalink
Update projectmanagement/src/main/java/life/qbic/projectmanagement/ap…
Browse files Browse the repository at this point in the history
…plication/sample/SamplePreview.java

Co-authored-by: Tobias Koch <[email protected]>
  • Loading branch information
wow-such-code and KochTobi authored Jul 12, 2023
1 parent 83b1f71 commit 879486c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,11 @@ public String specimen() {
public String analyte() {
return analyte;
}
public String analysisType() {
return analysisType;
public Optional<String> analysisType() {
return Optional.ofNullable(analysisType);
}
public String comment() {
return comment;
public Optional<String> comment() {
return Optional.ofNullable(comment);
}

public ExperimentalGroup experimentalGroup() {
Expand Down

0 comments on commit 879486c

Please sign in to comment.