This commit is contained in:
Lucio Lelii 2008-12-04 01:49:00 +00:00
parent c7ae673209
commit 6bee5458d8
2 changed files with 2 additions and 2 deletions

View File

@ -303,7 +303,7 @@ public class ModelerService {
System.out.println(XMLUtil.PrepareMCFormatXML(totalMF, resNative, resDerivable, selectedMetadataStructure));
return XMLUtil.PrepareMCFormatXML(totalMF, resNative, resDerivable, selectedMetadataStructure);
return XMLUtil.PrepareMCFormatXML( resNative,resDerivable,totalMF , selectedMetadataStructure);
}

View File

@ -63,7 +63,7 @@ public class MetadataFormat implements Listable{
}
public List<String> getAsStringList(){
return Arrays.asList(new String[]{this.id, this.name, this.schemaURI.getScheme(), this.language});
return Arrays.asList(new String[]{this.id, this.name, this.schemaURI.toString(), this.language});
}