From fe8f31518482c912655f43ea2af2b3f58f570a7e Mon Sep 17 00:00:00 2001 From: Shautvast Date: Wed, 26 Jul 2023 17:39:08 +0200 Subject: [PATCH] remove redundant --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 8124f0c..22f50e9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ Utility classes that use ASM for generating metaclasses as if it were standard j __nl.sander.reflective.compare.Compare__ * universal (deep) compare tool * compares [apple] to [orange] recursively and shows the diff -* no reflection * compiles to bytecode version jdk11 * but also handles records, if you run jdk16+ * Can optionally do 'structural comparison' (as opposed to _nominal_ like in the respective types of polymorphism). Let's say you have class Apple with property _color_ and a class Orange, also with property _color_. `Compare` provides `any` method with which you can compare the values disregarding the type that contains them.