Skip to content

Commit

Permalink
make members public
Browse files Browse the repository at this point in the history
  • Loading branch information
carltimmer committed Aug 14, 2024
1 parent 0c6dd7d commit 3a7b217
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/org/jlab/coda/jevio/EventWriterUnsyncV4.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ public enum IOStatus {
* It is a soft limit since a single
* event larger than this limit may need to be written.
*/
static final int DEFAULT_BLOCK_SIZE = 4194304;
public static final int DEFAULT_BLOCK_SIZE = 4194304;

/** The default maximum event count for a single block used for writing. */
static final int DEFAULT_BLOCK_COUNT = 10000;
public static final int DEFAULT_BLOCK_COUNT = 10000;

/**
* The upper limit of maximum size for a single block used for writing
Expand Down

0 comments on commit 3a7b217

Please sign in to comment.