]> gcc.gnu.org Git - gcc.git/blobdiff - libjava/classpath/gnu/classpath/jdwp/util/VariableTable.java
VariableTable.java: Change longs to ints for argCnt and slots.
[gcc.git] / libjava / classpath / gnu / classpath / jdwp / util / VariableTable.java
index 22d8c7dd621d048dced9b1adc44f40d1eecb0844..f30c2158100c141fcf5ea3689035941f1ba86e4b 100644 (file)
@@ -50,9 +50,9 @@ import java.io.IOException;
 public class VariableTable
 {
 
-  private final long argCnt;
+  private final int argCnt;
 
-  private final long slots;
+  private final int slots;
 
   private final long[] lineCI;
 
@@ -95,8 +95,8 @@ public class VariableTable
    */
   public void write(DataOutputStream os) throws IOException
   {
-    os.writeLong(argCnt);
-    os.writeLong(slots);
+    os.writeInt(argCnt);
+    os.writeInt(slots);
     for (int i = 0; i < slots; i++)
       {
         os.writeLong(lineCI[i]);
This page took 0.894226 seconds and 5 git commands to generate.