Update readme and actions
All checks were successful
Java Google Checkstyle / Checkstyle Linter (push) Successful in 35s
Build with gradle / Build-with-gradle (push) Successful in 1m31s

Project now builds and runs unit tests, as well as linting with checkstyle.

Co-authored-by: Josh Chester <numbers@softwaresmyth.com>
Co-committed-by: Josh Chester <numbers@softwaresmyth.com>
This commit was merged in pull request #2.
This commit is contained in:
2026-01-24 13:05:12 -06:00
committed by numbers
parent 38f6a8439f
commit 2f5dfa5a26
6 changed files with 574 additions and 17 deletions

View File

@@ -2,5 +2,10 @@
A ridiculous library that...does nothing.
Contained are three methods that together cover every possible method signature.
Any instance where a method reference is expected and a no-op is needed can be covered by one of these three methods.
Any instance where a method reference is expected and a no-op is needed can be covered by one of these three methods.
This project came about when I realized an `Object...` parameter might satisfy the type system for methods
that expected any combination of parameters. Turns out it does, including methods that take no arguments
such as implementations of `Supplier<T>`.
It continues here as my go-to place for learning CI actions with a small java project.