Toggle navigation
Home
org.neo4j.kernel.impl.util.MutableInteger to org.apache.commons.lang3.mutable.MutableInt
No. of Instances - 11
No. of Commits - 1
No. of Projects - {'neo4j'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> External
Mapping:
Add or Remove Method invocation
sharedCurrentDepth.value
to
sharedCurrentDepth.intValue()
Cascading Type Change (Similar)
MutableInteger
to
MutableInt
Update Anonymous class
{ @Override protected void transactionData( GraphStoreFixture.TransactionDataBuilder tx, GraphStoreFixture.IdGenerator next){ int labelId=next.label(); tx.nodeLabel(labelId,"label"); id.value=labelId; } }
to
{ @Override protected void transactionData( GraphStoreFixture.TransactionDataBuilder tx, GraphStoreFixture.IdGenerator next){ int labelId=next.label(); tx.nodeLabel(labelId,"label"); id.setValue(labelId); } }
{ @Override protected void transactionData( GraphStoreFixture.TransactionDataBuilder tx, GraphStoreFixture.IdGenerator next){ int propertyKeyId=next.propertyKey(); tx.propertyKey(propertyKeyId,"property"); id.value=propertyKeyId; } }
to
{ @Override protected void transactionData( GraphStoreFixture.TransactionDataBuilder tx, GraphStoreFixture.IdGenerator next){ int propertyKeyId=next.propertyKey(); tx.propertyKey(propertyKeyId,"property"); id.setValue(propertyKeyId); } }
{ @Override protected void transactionData( GraphStoreFixture.TransactionDataBuilder tx, GraphStoreFixture.IdGenerator next){ int relTypeId=next.relationshipType(); tx.relationshipType(relTypeId,"relType"); id.value=relTypeId; } }
to
{ @Override protected void transactionData( GraphStoreFixture.TransactionDataBuilder tx, GraphStoreFixture.IdGenerator next){ int relTypeId=next.relationshipType(); tx.relationshipType(relTypeId,"relType"); id.setValue(relTypeId); } }