Skip to content

Commit f1c919f

Browse files
author
Igor Veresov
committedMar 19, 2020
8230290: [JVMCI] Remove unused API entry points
Remove VirtualObject.setIsAutoBox() Reviewed-by: kvn
1 parent 599af2a commit f1c919f

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed
 

‎src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/VirtualObject.java

-11
Original file line numberDiff line numberDiff line change
@@ -240,17 +240,6 @@ public boolean isAutoBox() {
240240
return isAutoBox;
241241
}
242242

243-
/**
244-
* Sets the value of the box flag.
245-
*
246-
* @param isAutoBox a flag that tells the runtime that the object may be a boxed primitive and
247-
* that it possibly needs to be obtained for the box cache instead of creating a new
248-
* instance.
249-
*/
250-
public void setIsAutoBox(boolean isAutoBox) {
251-
this.isAutoBox = isAutoBox;
252-
}
253-
254243
/**
255244
* Overwrites the current set of values with a new one.
256245
*

0 commit comments

Comments
 (0)
Please sign in to comment.