fix namespace from master merge
[nikiroo-utils.git] / src / be / nikiroo / utils / serial / CustomSerializer.java
index 9c3ef8c425577bba30dd327fedf9e4d4348e80ac..36a6c214c02576deb012316e2d6338477554d6e5 100644 (file)
@@ -5,8 +5,8 @@ import java.io.InputStream;
 import java.io.OutputStream;
 
 import be.nikiroo.utils.IOUtils;
-import be.nikiroo.utils.NextableInputStream;
-import be.nikiroo.utils.NextableInputStreamStep;
+import be.nikiroo.utils.streams.NextableInputStream;
+import be.nikiroo.utils.streams.NextableInputStreamStep;
 
 public abstract class CustomSerializer {
 
@@ -44,7 +44,6 @@ public abstract class CustomSerializer {
 
        public Object decode(InputStream in) throws IOException {
                // TODO: manage ENTER
-               // TODO read and skip "custom^......^": next(), next(), nextAll() ?
                NextableInputStream stream = new NextableInputStream(in,
                                new NextableInputStreamStep('^'));