In `src/hotspot/share/gc/shared/cardTable.hpp`:
```
enum PrecisionStyle {
Precise,
ObjHeadPreciseArray
};
```
Only `ObjHeadPreciseArray` is ever supported. Drop the surrounding code for `Precise`.
```
enum PrecisionStyle {
Precise,
ObjHeadPreciseArray
};
```
Only `ObjHeadPreciseArray` is ever supported. Drop the surrounding code for `Precise`.
- relates to
-
JDK-8299845 Remove obsolete comments in DirtyCardToOopClosure::get_actual_top
-
- Resolved
-