Skip to content

Commit

Permalink
Merge pull request #77 from simonpoole/expose_CompressFlags
Browse files Browse the repository at this point in the history
Extract and make CompressFlags public
  • Loading branch information
joto authored Jan 7, 2024
2 parents 374895c + 8219186 commit 4e009b0
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 4e009b0

Please sign in to comment.