diff --git a/core/src/main/java/apoc/refactor/GraphRefactoring.java b/core/src/main/java/apoc/refactor/GraphRefactoring.java index 7e10c62d1..2b9140921 100644 --- a/core/src/main/java/apoc/refactor/GraphRefactoring.java +++ b/core/src/main/java/apoc/refactor/GraphRefactoring.java @@ -510,8 +510,8 @@ public Stream 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)); } @@ -555,8 +555,8 @@ public Stream 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)); } @@ -603,8 +603,8 @@ public Stream 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)); }