aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/javassist/compiler
diff options
context:
space:
mode:
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2008-06-03 08:46:36 +0000
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2008-06-03 08:46:36 +0000
commit6efe0397d30c3e568c53b401e3d65813d520d8c6 (patch)
treec241a316f7499c84e9e00dfcbe6f56f801c6d9fd /src/main/javassist/compiler
parent55210d8936096c3625af2662ea90f23842a94182 (diff)
downloadjavassist-6efe0397d30c3e568c53b401e3d65813d520d8c6.tar.gz
javassist-6efe0397d30c3e568c53b401e3d65813d520d8c6.zip
$type support by CtBehavior#insertBefore: JIRA JASSIST-62
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@442 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'src/main/javassist/compiler')
-rw-r--r--src/main/javassist/compiler/JvstCodeGen.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/javassist/compiler/JvstCodeGen.java b/src/main/javassist/compiler/JvstCodeGen.java
index b9574c83..47188504 100644
--- a/src/main/javassist/compiler/JvstCodeGen.java
+++ b/src/main/javassist/compiler/JvstCodeGen.java
@@ -95,7 +95,7 @@ public class JvstCodeGen extends MemberCodeGen {
}
else if (name.equals(dollarTypeName)) {
if (dollarType == null)
- throw new CompileError(dollarType + " is not available");
+ throw new CompileError(dollarTypeName + " is not available");
bytecode.addLdc(Descriptor.of(dollarType));
callGetType("getType");