From bddcc273cf0becfa2fc8ae75087ddffa3cddd7e3 Mon Sep 17 00:00:00 2001 From: Josh Chester Date: Sat, 24 Jan 2026 00:02:53 -0600 Subject: [PATCH] update readme --- readme.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 1f2c48d..67b8e8b 100644 --- a/readme.md +++ b/readme.md @@ -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. \ No newline at end of file +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`. + +It continues here as my go-to place for learning CI actions with a small java project.