/[classpath]/classpath/gnu/classpath/jdwp/util/Location.java
ViewVC logotype

Diff of /classpath/gnu/classpath/jdwp/util/Location.java

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

revision 1.1.2.1 by gnu_andrew, Tue Aug 16 16:22:36 2005 UTC revision 1.1.2.2 by gnu_andrew, Sat Sep 10 15:31:36 2005 UTC
# Line 38  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package gnu.classpath.jdwp.util;  package gnu.classpath.jdwp.util;
40    
41  import gnu.classpath.jdwp.Jdwp;  import gnu.classpath.jdwp.VMIdManager;
42  import gnu.classpath.jdwp.exception.JdwpException;  import gnu.classpath.jdwp.exception.JdwpException;
43  import gnu.classpath.jdwp.id.ClassReferenceTypeId;  import gnu.classpath.jdwp.id.ClassReferenceTypeId;
44  import gnu.classpath.jdwp.id.ObjectId;  import gnu.classpath.jdwp.id.ObjectId;
# Line 78  public class Location Line 78  public class Location
78    {    {
79      this.tag = tag;      this.tag = tag;
80      this.crti =      this.crti =
81        (ClassReferenceTypeId) Jdwp.getIdManager().getReferenceTypeId(clazz);        (ClassReferenceTypeId) VMIdManager.getDefault().getReferenceTypeId(clazz);
82      this.mid = Jdwp.getIdManager().getId(meth);      this.mid = VMIdManager.getDefault().getObjectId(meth);
83      this.index = index;      this.index = index;
84    }    }
85    
# Line 95  public class Location Line 95  public class Location
95    {    {
96      this.tag = bb.get();      this.tag = bb.get();
97      this.crti =      this.crti =
98        (ClassReferenceTypeId) Jdwp.getIdManager().readReferenceTypeId(bb);        (ClassReferenceTypeId) VMIdManager.getDefault().readReferenceTypeId(bb);
99      this.mid = Jdwp.getIdManager().readId(bb);      this.mid = VMIdManager.getDefault().readObjectId(bb);
100      this.index = bb.getInt();      this.index = bb.getInt();
101    }    }
102    

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

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