Skip to content

Commit c3f41a9

Browse files
committed
Rename method parameter
1 parent 936951c commit c3f41a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vmware-base/src/main/java/com/cloud/hypervisor/vmware/mo/VirtualMachineMO.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2739,10 +2739,10 @@ public Pair<VirtualDisk, String> getDiskDevice(String vmdkDatastorePath) throws
27392739
}
27402740

27412741
// return pair of VirtualDisk and disk device bus name(ide0:0, etc)
2742-
public Pair<VirtualDisk, String> getDiskDevice(String vmdkDatastorePath, boolean matchExactly, boolean discardDot) throws Exception {
2742+
public Pair<VirtualDisk, String> getDiskDevice(String vmdkDatastorePath, boolean matchExactly, boolean ignoreDotOnPath) throws Exception {
27432743
List<VirtualDevice> devices = _context.getVimClient().getDynamicProperty(_mor, "config.hardware.device");
27442744

2745-
if (discardDot) {
2745+
if (ignoreDotOnPath) {
27462746
vmdkDatastorePath = vmdkDatastorePath + ".";
27472747
}
27482748

0 commit comments

Comments
 (0)