8165493: SA: Add method in GrowableArray.java to be able to access the 'data' field

Reviewed-by: dholmes, dsamersoff, egahlin
This commit is contained in:
Poonam Bajaj 2016-09-12 17:18:19 +00:00
parent f6a7898995
commit 2347610827

View File

@ -65,4 +65,7 @@ public class GrowableArray<T> extends GenericGrowableArray {
super(addr);
virtualConstructor = v;
}
public Address getData() {
return dataField.getValue(getAddress());
}
}