Skip to content

Commit

Permalink
WIP: continuing Pipeline implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Jun 7, 2023
1 parent 446830d commit fb4d1ea
Show file tree
Hide file tree
Showing 5 changed files with 299 additions and 180 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@
*/
package org.itk.wasm;

import java.nio.ByteBuffer;

public class BinaryStream {
public ByteBuffer data;
public byte[] data;

public BinaryStream(ByteBuffer data) {
public BinaryStream(byte[] data) {
this.data = data;
}
}
Loading

0 comments on commit fb4d1ea

Please sign in to comment.