Skip to content
Snippets Groups Projects
Commit 5ed0c955 authored by GIRARDOT Raphael's avatar GIRARDOT Raphael Committed by MADELA Patrick
Browse files

canceled previous correction as it corrupted other applications

parent 279a2c4f
No related branches found
No related tags found
No related merge requests found
...@@ -9,11 +9,11 @@ package fr.soleil.docking.vl; ...@@ -9,11 +9,11 @@ package fr.soleil.docking.vl;
import java.awt.Color; import java.awt.Color;
import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeEvent;
import java.io.BufferedOutputStream;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
import java.io.IOException; import java.io.IOException;
import java.io.ObjectInputStream; import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.OutputStream; import java.io.OutputStream;
import javax.swing.JComponent; import javax.swing.JComponent;
...@@ -126,8 +126,8 @@ public class VlDockDockingManager extends ADockingManager { ...@@ -126,8 +126,8 @@ public class VlDockDockingManager extends ADockingManager {
OutputStream ous = null; OutputStream ous = null;
baos = new ByteArrayOutputStream(); baos = new ByteArrayOutputStream();
try { try {
// ous = new ObjectOutputStream(baos); ous = new ObjectOutputStream(baos);
ous = new BufferedOutputStream(baos); // ous = new BufferedOutputStream(baos);
mainDockingDesktop.writeXML(ous); mainDockingDesktop.writeXML(ous);
} catch (IOException e) { } catch (IOException e) {
dockingException = new DockingException(getClass().getSimpleName() dockingException = new DockingException(getClass().getSimpleName()
......
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