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 cd6baaea25 - Show all commits
@@ -15,6 +15,7 @@ class NoopTest {
void TestOneArg() {
Consumer<String> toTest = OrNot::noop;
toTest.accept("Ignored");
Assertions.fail("test failure");
}
/**
@@ -24,7 +25,6 @@ class NoopTest {
void TestTwoArg() {
BiConsumer<Double, Boolean> toTest = OrNot::noop;
toTest.accept(0.0, false);
Assertions.fail("test failure");
}
}