mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 15:10:23 +00:00
Small fixes
This commit is contained in:
parent
fd4dcc0739
commit
41837479fc
3 changed files with 1 additions and 4 deletions
|
@ -95,7 +95,6 @@ public class DataTableImpl extends DataSourceImpl implements DataTable {
|
|||
performInputExchange(sc, req, (ReadTableDataExchange.Response res, InputStream in) -> {
|
||||
var r = new TypedDataStreamParser(info.getDataType());
|
||||
r.parseStructures(in, TypedDataStructureNodeReader.immutable(info.getDataType()), nodes::add);
|
||||
return true;
|
||||
});
|
||||
}
|
||||
}.execute();
|
||||
|
@ -121,7 +120,6 @@ public class DataTableImpl extends DataSourceImpl implements DataTable {
|
|||
performInputExchange(sc, req,
|
||||
(ReadTableDataExchange.Response res, InputStream in) -> {
|
||||
input = in;
|
||||
return false;
|
||||
});
|
||||
}
|
||||
}.execute();
|
||||
|
|
|
@ -27,7 +27,6 @@ public class StopExchange implements MessageExchange<StopExchange.Request, StopE
|
|||
@Builder
|
||||
@Value
|
||||
public static class Request implements RequestMessage {
|
||||
boolean force;
|
||||
}
|
||||
|
||||
@Jacksonized
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module io.xpipe.sample {
|
||||
requires io.xpipe;
|
||||
requires io.xpipe.api;
|
||||
}
|
Loading…
Reference in a new issue