Some places didn't use JFR_ONLY correctly, we'd better clean up them.
e.g.
```
void G1NewTracer::initialize() {
JFR_ONLY(register_jfr_type_constants());
}
```
should be
```
void G1NewTracer::initialize() {
JFR_ONLY(register_jfr_type_constants();)
}
```
e.g.
```
void G1NewTracer::initialize() {
JFR_ONLY(register_jfr_type_constants());
}
```
should be
```
void G1NewTracer::initialize() {
JFR_ONLY(register_jfr_type_constants();)
}
```
- relates to
-
JDK-8326222 Fix copyright year in src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp
-
- Resolved
-