-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
None
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
-
Review(master) openjdk/jdk/27252