cshannon commented on code in PR #3480:
URL: https://github.com/apache/accumulo/pull/3480#discussion_r1239768681
##########
server/base/src/main/java/org/apache/accumulo/server/fs/VolumeManager.java:
##########
@@ -92,7 +93,7 @@ public Path getVolume(Path path) {
}
public Path removeVolume(Path path) {
- String pathString = path.toString();
+ String pathString = Objects.requireNonNull(path).toString();
Review Comment:
Good point, probably just force of habit but it is the same.
--
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]