Skip to content

Commit

Permalink
Extract and make CompressFlags public
Browse files Browse the repository at this point in the history
Fixes #68
  • Loading branch information
simonpoole committed Jan 7, 2024
1 parent 374895c commit 8219186
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src.java/crosby/binary/file/BlockOutputStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ License, or (at your option) any later version.
import java.util.ArrayList;
import java.util.List;

enum CompressFlags {
NONE, DEFLATE
}

public class BlockOutputStream implements Closeable, Flushable {

public BlockOutputStream(OutputStream output) {
Expand Down
5 changes: 5 additions & 0 deletions src.java/crosby/binary/file/CompressFlags.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package crosby.binary.file;

public enum CompressFlags {
NONE, DEFLATE
}

0 comments on commit 8219186

Please sign in to comment.