lidavidm commented on code in PR #43850:
URL: https://github.com/apache/arrow/pull/43850#discussion_r1735538087
##########
java/flight/flight-sql/src/test/java/org/apache/arrow/flight/sql/example/FlightSqlExample.java:
##########
@@ -253,36 +252,36 @@ public FlightSqlExample(final Location location, final
String dbName) {
}
public static boolean removeDerbyDatabaseIfExists(final String dbName) {
- boolean wasSuccess;
final Path path = Paths.get("target" + File.separator + dbName);
try (final Stream<Path> walk = Files.walk(path)) {
/*
* Iterate over all paths to delete, mapping each path to the outcome of
its own
- * deletion as a boolean representing whether or not each individual
operation was
+ * deletion as a boolean representing whether each individual operation
was
* successful; then reduce all booleans into a single answer, and store
that into
* `wasSuccess`, which will later be returned by this method.
Review Comment:
wasSuccess doesn't exist anymore, let's update the comment
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]