Skip to content
Snippets Groups Projects
Commit cabcdec7 authored by gakin's avatar gakin
Browse files

SSDM-4594 : OpenbisSync - fix attribute for file format type

SVN: 37649
parent a954a183
No related branches found
No related tags found
No related merge requests found
...@@ -141,7 +141,7 @@ public class MasterDataExtractor ...@@ -141,7 +141,7 @@ public class MasterDataExtractor
{ {
Element fileFormatTypeElement = doc.createElement("fileFormatType"); Element fileFormatTypeElement = doc.createElement("fileFormatType");
fileFormatTypeElement.setAttribute("code", fileFormatType.getCode()); fileFormatTypeElement.setAttribute("code", fileFormatType.getCode());
fileFormatTypeElement.setAttribute("description", fileFormatType.getCode()); fileFormatTypeElement.setAttribute("description", fileFormatType.getDescription());
fileFormatTypesElement.appendChild(fileFormatTypeElement); fileFormatTypesElement.appendChild(fileFormatTypeElement);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment