Skip to content

Commit be2c0dd

Browse files
committed
remove ref to org.apache.commons.lang3.StringUtils
1 parent a23b06b commit be2c0dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/com/cloud/consoleproxy/ConsoleProxyManagerImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@ public boolean finalizeVirtualMachineProfile(VirtualMachineProfile profile, Depl
12761276
buf.append(" vmpassword=").append(configurationDao.getValue("system.vm.password"));
12771277
}
12781278

1279-
if (org.apache.commons.lang3.StringUtils.isNotEmpty(NTPServerConfig.value())) {
1279+
if (StringUtils.isNotEmpty(NTPServerConfig.value())) {
12801280
buf.append(" ntpserverlist=").append(NTPServerConfig.value().replaceAll("\\s+",""));
12811281
}
12821282

@@ -1510,7 +1510,7 @@ public boolean canScan() {
15101510
public Long[] getScannablePools() {
15111511
List<Long> zoneIds = dataCenterDao.listEnabledNonEdgeZoneIds();
15121512
if (logger.isDebugEnabled()) {
1513-
logger.debug(String.format("Enabled non-edge zones available for scan: %s", org.apache.commons.lang3.StringUtils.join(zoneIds, ",")));
1513+
logger.debug(String.format("Enabled non-edge zones available for scan: %s", StringUtils.join(zoneIds, ",")));
15141514
}
15151515
return zoneIds.toArray(Long[]::new);
15161516
}

0 commit comments

Comments
 (0)