update readme #2

Merged
numbers merged 15 commits from test-build into main 2026-01-24 13:05:13 -06:00
Showing only changes of commit 9c9b20ea39 - Show all commits
@@ -1,6 +1,5 @@
package com.softwaresmyth.functions;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import java.util.function.BiConsumer;
@@ -15,7 +14,6 @@ class NoopTest {
void TestOneArg() {
Consumer<String> toTest = OrNot::noop;
toTest.accept("Ignored");
Assertions.fail("test failure");
}
/**