--- old/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/InstalledCode.java 2019-03-28 11:23:33.000000000 -0700 +++ new/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/InstalledCode.java 2019-03-28 11:23:33.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -52,14 +52,14 @@ /** * @return the address of entity representing this installed code. */ - public final long getAddress() { + public long getAddress() { return address; } /** * @return the address of the normal entry point of the installed code. */ - public final long getEntryPoint() { + public long getEntryPoint() { return entryPoint; }