Example #1
0
 /** Convert from a id in other to an external id */
 private NodeId mapFromJournal(NodeId id) {
   if (passthrough) throw new TDBTransactionException("Not in an active transaction");
   if (NodeId.isInline(id)) return id;
   return NodeId.create(id.getId() + allocOffset);
 }