From 4f98fb2bf8204f6af52cd6eeb3313d21c6ca95bc Mon Sep 17 00:00:00 2001 From: Alessio Leonardo Tomei <122273875+T0mexX@users.noreply.github.com> Date: Thu, 22 Aug 2024 14:40:57 +0200 Subject: Added Unit of measurament system with new deserialization (#242) --- .../src/main/java/org/opendc/simulator/compute/model/MemoryUnit.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'opendc-simulator/opendc-simulator-compute') diff --git a/opendc-simulator/opendc-simulator-compute/src/main/java/org/opendc/simulator/compute/model/MemoryUnit.java b/opendc-simulator/opendc-simulator-compute/src/main/java/org/opendc/simulator/compute/model/MemoryUnit.java index 4250f5a2..dbd3f89a 100644 --- a/opendc-simulator/opendc-simulator-compute/src/main/java/org/opendc/simulator/compute/model/MemoryUnit.java +++ b/opendc-simulator/opendc-simulator-compute/src/main/java/org/opendc/simulator/compute/model/MemoryUnit.java @@ -39,7 +39,7 @@ public final class MemoryUnit { * @param vendor The vendor of the storage device. * @param modelName The model name of the device. * @param speed The access speed of the memory in MHz. - * @param size The size of the memory unit in MBs. + * @param size The size of the memory unit in MiBs. */ public MemoryUnit(String vendor, String modelName, double speed, long size) { this.vendor = vendor; -- cgit v1.2.3