Skip to content

Commit

Permalink
[Java] Make constants package private.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeb01 committed Sep 2, 2024
1 parent b82ecfb commit 7c3504b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions aeron-cluster/src/main/java/io/aeron/cluster/RecordingLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@
*/
public final class RecordingLog implements AutoCloseable
{
public static final long MAGIC_NUMBER = 0xFFA3F010_00000000L;
public static final int HEADER_SIZE = 64;
public static final int MAJOR_VERSION = 0;
public static final int MINOR_VERSION = 1;
public static final int PATCH_VERSION = 0;
public static final int SEMANTIC_VERSION = SemanticVersion.compose(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION);
static final long MAGIC_NUMBER = 0xFFA3F010_00000000L;
static final int HEADER_SIZE = 64;
static final int MAJOR_VERSION = 0;
static final int MINOR_VERSION = 1;
static final int PATCH_VERSION = 0;
static final int SEMANTIC_VERSION = SemanticVersion.compose(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION);
private static final int MAGIC_NUMBER_OFFSET = 0;
private static final int VERSION_OFFSET = MAGIC_NUMBER_OFFSET + SIZE_OF_LONG;

Expand Down

0 comments on commit 7c3504b

Please sign in to comment.