Merge remote-tracking branch 'origin/patch'

This commit is contained in:
Ryan Kurtz
2026-06-08 08:23:20 -04:00
@@ -54,9 +54,7 @@ public class ClassSearcherTest {
"ghidra.util.classfinder.ClassSearcherTest$ClassWithStaticInitializerSideEffects",
TestSuper.class, getClass().getClassLoader());
assertNotNull(found);
assertEquals(Canary.ALIVE, canary);
Constructor<? extends TestSuper> constructor = found.getConstructor();
assertEquals(Canary.ALIVE, canary);
TestSuper instance = constructor.newInstance();
assertNotNull(instance);
assertEquals(Canary.DEAD, canary);