From 2673f6a4c2649c299f1fbd340ffb8ac7315ad326 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 6 Jan 2020 17:50:40 -0500 Subject: General warning cleanup Just clean up of some warnings/other misc. problems --- base/src/main/java/bjc/utils/funcutils/TestUtils.java | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'base/src/main/java/bjc/utils/funcutils/TestUtils.java') diff --git a/base/src/main/java/bjc/utils/funcutils/TestUtils.java b/base/src/main/java/bjc/utils/funcutils/TestUtils.java index 586d366..c037ec4 100644 --- a/base/src/main/java/bjc/utils/funcutils/TestUtils.java +++ b/base/src/main/java/bjc/utils/funcutils/TestUtils.java @@ -52,6 +52,15 @@ public class TestUtils { assertEquals(hasMore, src.hasNext()); } + /** + * Assert that a list has a given set of contents. + * + * @param src + * The list of actual elements. + * + * @param exps + * The list of expected elements. + */ @SafeVarargs public static void assertListEquals(List src, T... exps) { assertEquals(exps.length, src.size()); -- cgit v1.2.3