Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blitz: ExporterI no longer uses DOMUtil.writeXML #1093

Merged
merged 2 commits into from
May 8, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/blitz/src/ome/services/blitz/impl/ExporterI.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import ome.services.util.Executor;
import ome.system.ServiceFactory;
import ome.util.messages.InternalMessage;
import ome.xml.DOMUtil;
import ome.scifio.xml.XMLTools;
import ome.xml.model.OME;
import ome.xml.model.OMEModel;
import ome.xml.model.OMEModelImpl;
Expand Down Expand Up @@ -308,7 +308,7 @@ public Object doWork(Session session, ServiceFactory sf) {
file.deleteOnExit();
FileOutputStream fos = new FileOutputStream(
file);
DOMUtil.writeXML(fos, document);
XMLTools.writeXML(fos, document);
fos.close();
retrieve = null;
__cb.ice_response(file.length());
Expand Down