From ad5044591c8674acf174a8c0b63cf3b7f99f8397 Mon Sep 17 00:00:00 2001 From: Robert Sharp <rmsharp@student.unimelb.edu.au> Date: Mon, 21 Oct 2019 22:11:00 +1100 Subject: [PATCH] Fixed main error --- fuzzer/Fuzzer.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fuzzer/Fuzzer.java b/fuzzer/Fuzzer.java index c0a338c..bceeb70 100644 --- a/fuzzer/Fuzzer.java +++ b/fuzzer/Fuzzer.java @@ -11,6 +11,7 @@ import java.util.Random; /* a stub for your team's fuzzer */ public class Fuzzer { +//public static void main(String[] args) throws IOException { private static final String OUTPUT_FILE = "fuzz.txt"; @@ -42,8 +43,8 @@ public class Fuzzer { private static final double SAVE_VAR = 5; private static final double LIST_VAR = 5; - public static void Fuzzer() throws IOException { - //public static void main(String[] args) throws IOException { + //public static void Fuzzer() throws IOException { + public static void main(String[] args) throws IOException { //Rob's code Double[] freqValues = null; -- GitLab