Skip to content
Snippets Groups Projects
Commit fccbe11e authored by vkovtun's avatar vkovtun
Browse files

SSDM-9505 Fixing not responsive Zenodo when exporting. Reverting incorrect...

SSDM-9505 Fixing not responsive Zenodo when exporting. Reverting incorrect fixes of Zenodo API. Small fixes.
parent c2c83b7f
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ public abstract class AbstractSQLExecutor implements ISQLExecutor
while (resultSet.next())
{
final Map<String, Object> row = new HashMap<>();
final Map<String, Object> row = new LinkedHashMap<>();
for (final String columnName : columnNames)
{
row.put(columnName, resultSet.getObject(columnName));
......
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