From 30eb45b7757f0ee939032c786dea3c8500d6e40f Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Mon, 27 Mar 2023 16:21:50 +1100 Subject: [PATCH] tests: Removed comment --- tests/comp1110/ass2/DistributeResourcesTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/comp1110/ass2/DistributeResourcesTest.java b/tests/comp1110/ass2/DistributeResourcesTest.java index b4594bc..e76a64e 100644 --- a/tests/comp1110/ass2/DistributeResourcesTest.java +++ b/tests/comp1110/ass2/DistributeResourcesTest.java @@ -85,7 +85,6 @@ public class DistributeResourcesTest { private static void testSufficientlyRandom(HashMap> distribution){ for (String coordinate : distribution.keySet()){ - System.out.println(distribution.get(coordinate)); int total = 0; for(Character resource : resourceCharacters){ int amount = distribution.get(coordinate).get(resource);