smiklosovic commented on code in PR #1351:
URL: https://github.com/apache/cassandra/pull/1351#discussion_r857925576


##########
src/java/org/apache/cassandra/service/CassandraDaemon.java:
##########
@@ -498,13 +499,13 @@ public void runStartupChecks()
     {
         try
         {
-            startupChecks.verify(DatabaseDescriptor.getStartupChecksOptions());
+            StartupChecksOptions startupChecksOptions = 
DatabaseDescriptor.getStartupChecksOptions();
+            startupChecks.verify(startupChecksOptions);
         }
         catch (StartupException e)
         {
             exitOrFail(e.returnCode, e.getMessage(), e.getCause());
         }
-

Review Comment:
   I think we are brave enough to allow ourselves this blank like to be 
deleted, I am changing just this method and that line is redundant.



-- 
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: pr-unsubscr...@cassandra.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org
For additional commands, e-mail: pr-h...@cassandra.apache.org

Reply via email to