From 9f4216b653cb193b3ccbeaec63cf1ddcb5a9da56 Mon Sep 17 00:00:00 2001 From: IlayAtoun Date: Thu, 19 Mar 2026 04:40:27 +0200 Subject: [PATCH] Fix #384 --- lib/class-model.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/class-model.js b/lib/class-model.js index 28b68b0..a7c3d4d 100644 --- a/lib/class-model.js +++ b/lib/class-model.js @@ -282,7 +282,8 @@ model_new (jclass class_handle, get_method_name (jvmti, method, &name, NULL, NULL); get_method_modifiers (jvmti, method, &modifiers); - model_add_method (model, name, method, modifiers); + if (name[0] != '<') + model_add_method (model, name, method, modifiers); deallocate (jvmti, name); }