changeset 22713:088d24f0be35

Remove setAddressAndEntryPoint
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Thu, 29 Oct 2015 10:24:08 -0700
parents 3c1edc9c60d8
children 9b3b66634d17
files jvmci/jdk.vm.ci.code/src/jdk/vm/ci/code/InstalledCode.java
diffstat 1 files changed, 2 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/jvmci/jdk.vm.ci.code/src/jdk/vm/ci/code/InstalledCode.java	Thu Oct 29 16:11:45 2015 +0100
+++ b/jvmci/jdk.vm.ci.code/src/jdk/vm/ci/code/InstalledCode.java	Thu Oct 29 10:24:08 2015 -0700
@@ -31,7 +31,7 @@
     /**
      * Raw address address of entity representing this installed code.
      */
-    private long address;
+    protected long address;
 
     /**
      * Raw address of entryPoint of this installed code.
@@ -41,7 +41,7 @@
     /**
      * Counts how often the address field was reassigned.
      */
-    private long version;
+    protected long version;
 
     protected final String name;
 
@@ -49,12 +49,6 @@
         this.name = name;
     }
 
-    public final void setAddressAndEntryPoint(long address, long entryPoint) {
-        this.address = address;
-        this.entryPoint = entryPoint;
-        version++;
-    }
-
     /**
      * @return the address of entity representing this installed code.
      */