File tree 1 file changed +6
-6
lines changed
aeron-cluster/src/main/java/io/aeron/cluster
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 121
121
*/
122
122
public final class RecordingLog implements AutoCloseable
123
123
{
124
- public static final long MAGIC_NUMBER = 0xFFA3F010_00000000L ;
125
- public static final int HEADER_SIZE = 64 ;
126
- public static final int MAJOR_VERSION = 0 ;
127
- public static final int MINOR_VERSION = 1 ;
128
- public static final int PATCH_VERSION = 0 ;
129
- public static final int SEMANTIC_VERSION = SemanticVersion .compose (MAJOR_VERSION , MINOR_VERSION , PATCH_VERSION );
124
+ static final long MAGIC_NUMBER = 0xFFA3F010_00000000L ;
125
+ static final int HEADER_SIZE = 64 ;
126
+ static final int MAJOR_VERSION = 0 ;
127
+ static final int MINOR_VERSION = 1 ;
128
+ static final int PATCH_VERSION = 0 ;
129
+ static final int SEMANTIC_VERSION = SemanticVersion .compose (MAJOR_VERSION , MINOR_VERSION , PATCH_VERSION );
130
130
private static final int MAGIC_NUMBER_OFFSET = 0 ;
131
131
private static final int VERSION_OFFSET = MAGIC_NUMBER_OFFSET + SIZE_OF_LONG ;
132
132
You can’t perform that action at this time.
0 commit comments