# HG changeset patch # User Tom Rodriguez # Date 1446139448 25200 # Node ID 088d24f0be3511622672843adfb2eaac86bbce9d # Parent 3c1edc9c60d8f4ecea01794eb0acccea400a89b1 Remove setAddressAndEntryPoint diff -r 3c1edc9c60d8 -r 088d24f0be35 jvmci/jdk.vm.ci.code/src/jdk/vm/ci/code/InstalledCode.java --- 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. */