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

SSDM-13926: Fixing the failing JS vs Java API test.

parent ebc63871
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -17,7 +17,8 @@
define(["stjs", "as/dto/importer/data/IImportData"],
function (stjs, IImportData) {
var UncompressedImportData = function(file, scripts) {
var UncompressedImportData = function(format, file, scripts) {
this.format = format;
this.file = file;
this.scripts = scripts;
}
......@@ -31,6 +32,10 @@ define(["stjs", "as/dto/importer/data/IImportData"],
constructor.serialVersionUID = 1;
prototype.getFormat = function() {
return this.format;
};
prototype.getFile = function() {
return this.file;
};
......
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