From 887c4912dca5aea305b9d616235ae93c38d6c134 Mon Sep 17 00:00:00 2001 From: John DeRegnaucourt Date: Wed, 7 Feb 2024 22:58:32 -0500 Subject: [PATCH] fixed comment --- .../com/cedarsoftware/util/convert/ConverterEverythingTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/cedarsoftware/util/convert/ConverterEverythingTest.java b/src/test/java/com/cedarsoftware/util/convert/ConverterEverythingTest.java index f0d092c9..be8d66de 100644 --- a/src/test/java/com/cedarsoftware/util/convert/ConverterEverythingTest.java +++ b/src/test/java/com/cedarsoftware/util/convert/ConverterEverythingTest.java @@ -708,7 +708,7 @@ private void verifyTestPair(Class sourceClass, Class targetClass, Object[] testPair[0] = ((Supplier) testPair[0]).get(); } - // If lambda Supplier function given, execute it and substitute the value into the source location + // If lambda Supplier function given, execute it and substitute the value into the target location if (testPair[1] instanceof Supplier) { testPair[1] = ((Supplier) testPair[1]).get(); }