Skip to content

Commit 3a41240

Browse files
committed
Fix #460
Signed-off-by: Manoel Campos <[email protected]>
1 parent b43dbc0 commit 3a41240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/cloudsimplus/examples/resourceusage/VirtualMemoryForRequestedRamHigherThanAvailableExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ private void printOverSubscriptionDelay() {
172172
.getCloudletFinishedList()
173173
.stream()
174174
.filter(CloudletExecution::hasOverSubscription)
175-
.forEach(cle -> System.out.printf(format, cle, cle.getCloudlet().getTotalExecutionTime(), cle.getOverSubscriptionDelay(), cle.getExpectedFinishTime()));
175+
.forEach(cle -> System.out.printf(format, cle, cle.getCloudlet().getTotalExecutionTime(), cle.getTotalOverSubscriptionDelay(), cle.getExpectedFinishTime()));
176176
}
177177
}
178178

0 commit comments

Comments
 (0)