/[classpath]/classpath/gnu/classpath/jdwp/processor/MethodCommandSet.java
ViewVC logotype

Diff of /classpath/gnu/classpath/jdwp/processor/MethodCommandSet.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by keiths, Thu Aug 25 22:09:49 2005 UTC revision 1.3 by keiths, Fri Sep 2 20:48:25 2005 UTC
# Line 39  exception statement from your version. * Line 39  exception statement from your version. *
39  package gnu.classpath.jdwp.processor;  package gnu.classpath.jdwp.processor;
40    
41  import gnu.classpath.jdwp.JdwpConstants;  import gnu.classpath.jdwp.JdwpConstants;
42    import gnu.classpath.jdwp.VMVirtualMachine;
43  import gnu.classpath.jdwp.exception.JdwpException;  import gnu.classpath.jdwp.exception.JdwpException;
44  import gnu.classpath.jdwp.exception.JdwpInternalErrorException;  import gnu.classpath.jdwp.exception.JdwpInternalErrorException;
45  import gnu.classpath.jdwp.exception.NotImplementedException;  import gnu.classpath.jdwp.exception.NotImplementedException;
# Line 105  public class MethodCommandSet Line 106  public class MethodCommandSet
106      ObjectId oid = idMan.readObjectId(bb);      ObjectId oid = idMan.readObjectId(bb);
107      Method method = (Method) oid.getObject();      Method method = (Method) oid.getObject();
108    
109      LineTable lt = vm.getLineTable(clazz, method);      LineTable lt = VMVirtualMachine.getLineTable(clazz, method);
110      lt.write(os);      lt.write(os);
111    }    }
112    
# Line 118  public class MethodCommandSet Line 119  public class MethodCommandSet
119      ObjectId oid = idMan.readObjectId(bb);      ObjectId oid = idMan.readObjectId(bb);
120      Method method = (Method) oid.getObject();      Method method = (Method) oid.getObject();
121    
122      VariableTable vt = vm.getVarTable(clazz, method);      VariableTable vt = VMVirtualMachine.getVarTable(clazz, method);
123      vt.write(os);      vt.write(os);
124    }    }
125    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26