Skip to content

Commit

Permalink
Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
loveleif committed Dec 10, 2024
1 parent a788dec commit 93f150b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/src/main/java/apoc/refactor/GraphRefactoring.java
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,8 @@ public Stream<UpdatedRelationshipResult> to(
if (failOnErrors) {
throw e;
} else {
// Note! We might now have half applied the changes, not sure why we would want to do this instead of
// just failing.
// Note! We might now have half applied the changes,
// not sure why we would ever want to do this instead of just failing.
// I guess it's up to the user to explicitly rollback at this point ¯\_(ツ)_/¯.
return Stream.of(result.withError(e));
}
Expand Down Expand Up @@ -553,8 +553,8 @@ public Stream<RefactorRelationshipResult> invert(
if (failOnErrors) {
throw e;
} else {
// Note! We might now have half applied the changes, not sure why we would want to do this instead of
// just failing.
// Note! We might now have half applied the changes,
// not sure why we would ever want to do this instead of just failing.
// I guess it's up to the user to explicitly rollback at this point ¯\_(ツ)_/¯.
return Stream.of(result.withError(e));
}
Expand Down Expand Up @@ -601,8 +601,8 @@ public Stream<RefactorRelationshipResult> from(
if (failOnErrors) {
throw e;
} else {
// Note! We might now have half applied the changes, not sure why we would want to do this instead of
// just failing.
// Note! We might now have half applied the changes,
// not sure why we would ever want to do this instead of just failing.
// I guess it's up to the user to explicitly rollback at this point ¯\_(ツ)_/¯.
return Stream.of(result.withError(e));
}
Expand Down

0 comments on commit 93f150b

Please sign in to comment.