From 2925de096370f13a14ff7cb0a574a7ec6ae99da6 Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Tue, 14 Apr 2020 16:43:54 -0400 Subject: Cleanup some warnings and stuff --- src/test/java/bjc/everge/TestUtils.java | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'src/test/java/bjc/everge/TestUtils.java') diff --git a/src/test/java/bjc/everge/TestUtils.java b/src/test/java/bjc/everge/TestUtils.java index 49e962e..b3ca419 100644 --- a/src/test/java/bjc/everge/TestUtils.java +++ b/src/test/java/bjc/everge/TestUtils.java @@ -16,29 +16,12 @@ import static org.junit.Assert.*; * * @author Ben Culkin */ +@SuppressWarnings("javadoc") public class TestUtils { - /** - * Assert that a ReplParseException is thrown with a given message. - * - * @param msg - * The message. - * @param fle - * The file to load input from. - */ public static void assertThrownMessage(String msg, String fle) { assertThrownMessage(false, msg, fle); } - /** - * Assert that a ReplParseException is thrown with a given message. - * - * @param logMsg - * Log the exception message. - * @param msg - * The message. - * @param fle - * The file to load input from. - */ public static void assertThrownMessage(boolean logMsg, String msg, String fle) { try (FileInputStream fis = new FileInputStream(fle); Scanner scn = new Scanner(fis)) { -- cgit v1.2.3