clean up code
diff --git a/engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java b/engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java
index df5b820..87df766 100644
--- a/engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java
+++ b/engine/orchestration/src/main/java/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java
@@ -1751,15 +1751,10 @@
         }
 
         //apply network ACLs
-        NsxProviderVO nsxProviderVO = nsxProviderDao.findByZoneId(zone.getId());
-        // Objects.isNull(nsxProviderVO) &&
         if (!_networkACLMgr.applyACLToNetwork(networkId)) {
             s_logger.warn("Failed to reapply network ACLs as a part of  of network id=" + networkId + " restart");
             success = false;
         }
-//        else if (Objects.nonNull(nsxProviderVO)) {
-//            success = true;
-//        }
 
         return success;
     }