diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2006-02-16 14:42:22 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2006-02-16 14:42:22 +0000 |
commit | f89063af066d1e9e1fd36229645a565145c8fb5f (patch) | |
tree | 34aebde1d0a0deed7362e59531d3f17fe71f2eef /src/main/javassist/expr | |
parent | 14e86c40429c91e8951c828456bff233fdc01113 (diff) | |
download | javassist-f89063af066d1e9e1fd36229645a565145c8fb5f.tar.gz javassist-f89063af066d1e9e1fd36229645a565145c8fb5f.zip |
reformatting.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@248 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'src/main/javassist/expr')
-rw-r--r-- | src/main/javassist/expr/NewExpr.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/javassist/expr/NewExpr.java b/src/main/javassist/expr/NewExpr.java index 835485f5..19018d3d 100644 --- a/src/main/javassist/expr/NewExpr.java +++ b/src/main/javassist/expr/NewExpr.java @@ -95,8 +95,7 @@ public class NewExpr extends Expr { * * @return the signature */ - public String getSignature() - { + public String getSignature() { ConstPool constPool = getConstPool(); int methodIndex = iterator.u16bitAt(currentPos + 1); // constructor return constPool.getMethodrefType(methodIndex); @@ -146,7 +145,7 @@ public class NewExpr extends Expr { throw new CannotCompileException( "sorry, cannot edit NEW followed by no DUP"); } - + /** * Replaces the <tt>new</tt> expression with the bytecode derived from * the given source text. |