From 1b1face692edeceff8c93b2d5788ce09929840ed Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Sat, 20 Aug 2011 08:22:28 +0000 Subject: [PATCH] * fixed signature in enum class header (missed L-prefix) git-svn-id: branches/jvmbackend@18663 - --- compiler/agjasmin.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/agjasmin.pas b/compiler/agjasmin.pas index b8128d99dd..2c9fdbde84 100644 --- a/compiler/agjasmin.pas +++ b/compiler/agjasmin.pas @@ -620,7 +620,7 @@ implementation implemented interfaces) } if (obj.typ=objectdef) and (oo_is_enum_class in tobjectdef(obj).objectoptions) then - AsmWriteln('.signature "Ljava/lang/Enum<'+obj.jvm_full_typename(true)+';>;"'); + AsmWriteln('.signature "Ljava/lang/Enum;"'); { in case of nested class: relation to parent class } if obj.owner.symtabletype in [objectsymtable,recordsymtable] then AsmWriteln(InnerStructDef(obj));