Commit 0dc399f5 authored by Anton Beloglazov's avatar Anton Beloglazov

- Code cleaning

parent e32bdfdd
...@@ -18,7 +18,6 @@ import org.cloudbus.cloudsim.lists.PeList; ...@@ -18,7 +18,6 @@ import org.cloudbus.cloudsim.lists.PeList;
import org.cloudbus.cloudsim.provisioners.BwProvisioner; import org.cloudbus.cloudsim.provisioners.BwProvisioner;
import org.cloudbus.cloudsim.provisioners.RamProvisioner; import org.cloudbus.cloudsim.provisioners.RamProvisioner;
// TODO: Auto-generated Javadoc
/** /**
* The Class HostDynamicWorkload. * The Class HostDynamicWorkload.
* *
...@@ -143,7 +142,7 @@ public class HostDynamicWorkload extends Host { ...@@ -143,7 +142,7 @@ public class HostDynamicWorkload extends Host {
* @return the utilization * @return the utilization
*/ */
public double getMaxUtilization() { public double getMaxUtilization() {
return PeList.getMaxUtilization((List<Pe>) getPeList()); return PeList.getMaxUtilization(getPeList());
} }
/** /**
...@@ -155,7 +154,7 @@ public class HostDynamicWorkload extends Host { ...@@ -155,7 +154,7 @@ public class HostDynamicWorkload extends Host {
* @return the utilization * @return the utilization
*/ */
public double getMaxUtilizationAmongVmsPes(Vm vm) { public double getMaxUtilizationAmongVmsPes(Vm vm) {
return PeList.getMaxUtilizationAmongVmsPes((List<Pe>) getPeList(), vm); return PeList.getMaxUtilizationAmongVmsPes(getPeList(), vm);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment