| Chunk |
|---|
| Conflicting content |
|---|
boolean hasPersistentState();
<<<<<<< HEAD
/**
* removes the entity using @{link GraphDatabaseContext.removeNodeEntity}
* the entity and relationship are still accessible after removal but before transaction commit
* but all modifications will throw an exception
*/
=======
>>>>>>> 0c20e6488c33ead3959c2b33dbda3f8192abd280
void remove();
} |
| Solution content |
|---|
boolean hasPersistentState();
/**
* removes the entity using @{link GraphDatabaseContext.removeNodeEntity}
* the entity and relationship are still accessible after removal but before transaction commit
* but all modifications will throw an exception
*/
void remove();
} |
| File |
|---|
| GraphBacked.java |
| Developer's decision |
|---|
| Version 1 |
| Kind of conflict |
|---|
| Comment |
| Chunk |
|---|
| Conflicting content |
|---|
public EntityState |
| Solution content |
|---|
public EntityState |
| File |
|---|
| NodeEntityStateFactory.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Method invocation |
| Variable |
| Chunk |
|---|
| Conflicting content |
|---|
assertNull(nodeFor(dev));
}
<<<<<<< HEAD
private boolean hasUnderlyingNode(NodeBacked nodeBacked) {
=======
private boolean hasPersistentState(NodeBacked nodeBacked) {
>>>>>>> 0c20e6488c33ead3959c2b33dbda3f8192abd280
return nodeBacked.hasPersistentState();
}
|
| Solution content |
|---|
assertNull(nodeFor(dev));
}
private boolean hasPersistentState(NodeBacked nodeBacked) {
return nodeBacked.hasPersistentState();
}
|
| File |
|---|
| AttachEntityTest.java |
| Developer's decision |
|---|
| Version 2 |
| Kind of conflict |
|---|
| Method signature |