-
Type:
Enhancement
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: None
-
Component/s: hotspot
-
b16
In the same class, there is another method which is effectively identical to `drain_stacks_depth`.
```
void drain_stacks(bool totally_drain) {
drain_stacks_depth(totally_drain);
}
```
Can merge the two into one to reduce API surface.
```
void drain_stacks(bool totally_drain) {
drain_stacks_depth(totally_drain);
}
```
Can merge the two into one to reduce API surface.
- links to
-
Commit(master)
openjdk/jdk/2c13c66c
-
Review(master)
openjdk/jdk/27252