Skip to content

Commit 1e87d7b

Browse files
Fixing checkstyle.
Making local variable compatible with our checkstyle settings.
1 parent 2ed64b2 commit 1e87d7b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server/src/com/cloud/network/router/VirtualNetworkApplianceManagerImpl.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -699,11 +699,11 @@ public boolean start() {
699699
s_logger.debug("router.check.interval - " + _routerCheckInterval + " so not scheduling the redundant router checking thread");
700700
}
701701

702-
final int _routerAlertsCheckInterval = RouterAlertsCheckInterval.value();
703-
if (_routerAlertsCheckInterval > 0) {
704-
_checkExecutor.scheduleAtFixedRate(new CheckRouterAlertsTask(), _routerAlertsCheckInterval, _routerAlertsCheckInterval, TimeUnit.SECONDS);
702+
final int routerAlertsCheckInterval = RouterAlertsCheckInterval.value();
703+
if (routerAlertsCheckInterval > 0) {
704+
_checkExecutor.scheduleAtFixedRate(new CheckRouterAlertsTask(), routerAlertsCheckInterval, routerAlertsCheckInterval, TimeUnit.SECONDS);
705705
} else {
706-
s_logger.debug("router.alerts.check.interval - " + _routerAlertsCheckInterval + " so not scheduling the router alerts checking thread");
706+
s_logger.debug("router.alerts.check.interval - " + routerAlertsCheckInterval + " so not scheduling the router alerts checking thread");
707707
}
708708

709709
return true;

0 commit comments

Comments
 (0)