Skip to content

Commit

Permalink
refactor: renamed getTumorIdFromAdt -> getTumorIdFromMeldung
Browse files Browse the repository at this point in the history
  • Loading branch information
chgl committed Jun 10, 2024
1 parent 1200185 commit 3c82ffe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static String getPatIdFromMeldung(MeldungExport meldung) {
.getPatient_ID();
}

public static String getTumorIdFromAdt(MeldungExport meldung) {
public static String getTumorIdFromMeldung(MeldungExport meldung) {
return meldung
.getXml_daten()
.getMenge_Patient()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ protected ObdsProcessor(
"Struct{REFERENZ_NUMMER="
+ getPatIdFromMeldung(meldung)
+ ",TUMOR_ID="
+ getTumorIdFromAdt(meldung)
+ getTumorIdFromMeldung(meldung)
+ "}",
meldung),
Grouped.with(Serdes.String(), new MeldungExportSerde()))
Expand Down

0 comments on commit 3c82ffe

Please sign in to comment.