Skip to content

Commit

Permalink
Add missing imports
Browse files Browse the repository at this point in the history
Complements cb35ebf.
  • Loading branch information
dr0i committed Oct 25, 2024
1 parent cb35ebf commit 1962071
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@

import org.metafacture.framework.FluxCommand;
import org.metafacture.framework.MetafactureException;
import org.metafacture.framework.annotations.Description;
import org.metafacture.framework.annotations.In;
import org.metafacture.framework.annotations.Out;

import java.io.FileOutputStream;
import java.io.IOException;
Expand All @@ -38,7 +40,7 @@
*/
@Description("Writes objects to one (or more) file(s)")
@In(Object.class)
@In(Void.class)
@Out(Void.class)
@FluxCommand("write-files")
public final class ObjectFileWriter<T> extends AbstractObjectWriter<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.metafacture.framework.FluxCommand;
import org.metafacture.framework.annotations.Description;
import org.metafacture.framework.annotations.In;
import org.metafacture.framework.annotations.Out;

import java.nio.charset.Charset;

Expand Down

0 comments on commit 1962071

Please sign in to comment.