comparison jvmci/jdk.vm.ci.meta/src/jdk/vm/ci/meta/LineNumberTable.java @ 23736:9bc5db6cdbb0

Backport method renames from jdk9.
author Roland Schatz <roland.schatz@oracle.com>
date Thu, 11 Aug 2016 15:53:05 +0200
parents 0bd91cd9869d
children
comparison
equal deleted inserted replaced
23735:009dff60a086 23736:9bc5db6cdbb0
60 } 60 }
61 61
62 /** 62 /**
63 * Gets a copy of the array of line numbers that was passed to this object's constructor. 63 * Gets a copy of the array of line numbers that was passed to this object's constructor.
64 */ 64 */
65 public int[] getLineNumbersCopy() { 65 public int[] getLineNumbers() {
66 return lineNumbers.clone(); 66 return lineNumbers.clone();
67 } 67 }
68 68
69 /** 69 /**
70 * Gets a copy of the array of bytecode indexes that was passed to this object's constructor. 70 * Gets a copy of the array of bytecode indexes that was passed to this object's constructor.
71 */ 71 */
72 public int[] getBcisCopy() { 72 public int[] getBcis() {
73 return bcis.clone(); 73 return bcis.clone();
74 } 74 }
75 } 75 }