use of org.neo4j.kernel.impl.store.record.NeoStoreRecord in project neo4j by neo4j.
the class MessageConsistencyLoggerTest method neoStoreRecord.
private static String neoStoreRecord(boolean used, long nextProp) {
NeoStoreRecord record = new NeoStoreRecord();
record.setInUse(used);
record.setNextProp(nextProp);
return record.toString();
}
Aggregations