]> source.dussan.org Git - javassist.git/commitdiff
deleted some local variables that are never read.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 30 Jun 2005 17:47:41 +0000 (17:47 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 30 Jun 2005 17:47:41 +0000 (17:47 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@187 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/CtNewWrappedConstructor.java
src/main/javassist/bytecode/ClassFileWriter.java
src/main/javassist/compiler/CodeGen.java
src/main/javassist/compiler/CompileError.java
src/main/javassist/expr/MethodCall.java
src/main/javassist/expr/NewExpr.java
src/main/javassist/reflect/CannotInvokeException.java
src/main/javassist/reflect/Reflection.java
src/main/javassist/rmi/StubGenerator.java
src/main/javassist/web/Webserver.java

index b040f3d61d803ebe287d548c2c1c74606bb062f2..82fa24060a5f728169e1aeb4b7ea7792d4af3655 100644 (file)
@@ -20,7 +20,7 @@ import javassist.CtMethod.ConstParameter;
 
 class CtNewWrappedConstructor extends CtNewWrappedMethod {
     private static final int PASS_NONE = CtNewConstructor.PASS_NONE;
-    private static final int PASS_ARRAY = CtNewConstructor.PASS_ARRAY;
+    // private static final int PASS_ARRAY = CtNewConstructor.PASS_ARRAY;
     private static final int PASS_PARAMS = CtNewConstructor.PASS_PARAMS;
 
     public static CtConstructor wrapped(CtClass[] parameterTypes,
index 57e221e164c1af358965f899d4a63587013a7f0e..14de1189c622f0025b077b8adef1a1450244e5c3 100644 (file)
@@ -60,7 +60,6 @@ public class ClassFileWriter {
         }
 
         out.println();
-        ConstPool cp = cf.getConstPool();
         list = cf.getFields();
         n = list.size();
         for (int i = 0; i < n; ++i) {
index fe74e281f1a392bb8c0ced5a73b17928f36289c3..9b401804551cdde356c56574202d657d3495d655 100644 (file)
@@ -1581,7 +1581,6 @@ public abstract class CodeGen extends Visitor implements Opcode, TokenId {
     public void atArrayRead(ASTree array, ASTree index)
         throws CompileError
     {
-        int op;
         arrayAccess(array, index);
         bytecode.addOpcode(getArrayReadOp(exprType, arrayDim));
     }
@@ -1607,7 +1606,6 @@ public abstract class CodeGen extends Visitor implements Opcode, TokenId {
     }
 
     protected static int getArrayReadOp(int type, int dim) {
-        int op;
         if (dim > 0)
             return AALOAD;
 
@@ -1633,7 +1631,6 @@ public abstract class CodeGen extends Visitor implements Opcode, TokenId {
     }
 
     protected static int getArrayWriteOp(int type, int dim) {
-        int op;
         if (dim > 0)
             return AASTORE;
 
index 476b2a94ed5c45e9c6cdee63191bc1fb63bcdbdb..e5bb2d735fd0ff8796361995c1280e6cab45d72d 100644 (file)
@@ -40,6 +40,8 @@ public class CompileError extends Exception {
         this("cannot find " + e.getMessage());
     }
 
+    public Lex getLex() { return lex; }
+
     public String getMessage() {
         return reason;
     }
index ded74e0cf322411a35be43689f303fb756694022..26e83e790c16eff86c9f9622a9ed78b2d93e54c0 100644 (file)
@@ -32,7 +32,6 @@ public class MethodCall extends Expr {
     }
 
     private int getNameAndType(ConstPool cp) {
-        String cname;
         int pos = currentPos;
         int c = iterator.byteAt(pos);
         int index = iterator.u16bitAt(pos + 1);
index be457a38b1d34a040559249f80cbfd4ee353ea45..7c3a41606d4d0f87989b9cff88daeeb93eed4781 100644 (file)
@@ -38,7 +38,6 @@ public class NewExpr extends Expr {
     }
 
     private int getNameAndType(ConstPool cp) {
-        String cname;
         int pos = currentPos;
         int c = iterator.byteAt(pos);
         int index = iterator.u16bitAt(pos + 1);
index 2a6cb9c21f609c7852fca942a08c2f9f7b7d6f75..c778e89d872619f65a24d3a4430d3c38cc30a68e 100644 (file)
@@ -27,10 +27,13 @@ import java.lang.IllegalAccessException;
  * @see javassist.reflect.ClassMetaobject#invoke(Object, int, Object[])
  */
 public class CannotInvokeException extends RuntimeException {
+
+    private Throwable err = null;
+
     /**
-     * @serial
+     * Returns the cause of this exception.  It may return null.
      */
-    private Throwable err = null;
+    public Throwable getReason() { return err; }
 
     /**
      * Constructs a CannotInvokeException with an error message.
index 1d56de5bd7ade7a323b8c63bb782fa6814ddad74..cd4f441cfc380d14dae38061d6e48e60fe121216 100644 (file)
@@ -276,7 +276,6 @@ public class Reflection implements Translator {
         throws CannotCompileException, NotFoundException
     {
         CtMethod[] ms = clazz.getMethods();
-        int identifier = 0;
         for (int i = 0; i < ms.length; ++i) {
             CtMethod m = ms[i];
             int mod = m.getModifiers();
index ecf680c27e8e1305edd4f8c59de1f2de9a57827f..eac40916d101e1e9b10ec81831da0f2094540d33 100644 (file)
@@ -241,7 +241,6 @@ public class StubGenerator implements Translator {
             if (superclazz == null)
                 break;
 
-            String name = superclazz.getName();
             try {
                 superclazz.getDeclaredConstructor(null);
                 break;  // the constructor with no arguments is found.
index 4e41faa20b4806b9814711766f872818604d4481..b2d0b7b907f0a2acc62029fdc208a992e8258bc9 100644 (file)
@@ -46,7 +46,6 @@ public class Webserver {
     private final static int typeGif = 3;
     private final static int typeJpeg = 4;
     private final static int typeText = 5;
-    private final static int typeUnknown = 6;
 
     /**
      * If this field is not null, the class files taken from