corrected a merge error

This commit is contained in:
jstaerk
2024-12-04 14:39:14 +01:00
parent 3f22cb3066
commit f4036a5b6d

View File

@@ -72,11 +72,6 @@ public class IncludedNote {
return content;
}
public IncludedNote setContent(String content) {
this.content = content;
return this;
}
public SubjectCode getSubjectCode() {
return subjectCode;
}
@@ -93,9 +88,9 @@ public class IncludedNote {
}
public String toCiiXml(){
public String toCiiXml() {
String result = INCLUDE_START + CONTENT_START +
XMLTools.encodeXML(getContent() )+ CONTENT_END;
XMLTools.encodeXML(getContent()) + CONTENT_END;
if (getSubjectCode() != null) {
result += SUBJECT_CODE_START + getSubjectCode() + SUBJECT_CODE_END;
}