Adjust decls too

This commit is contained in:
MBaesken 2026-01-27 16:33:25 +01:00
parent 5f268ea77c
commit 23bec28590
2 changed files with 3 additions and 3 deletions

View File

@ -1124,7 +1124,7 @@ class AbstractClassHierarchyWalker {
Klass* find_witness(InstanceKlass* context_type, KlassDepChange* changes = nullptr); Klass* find_witness(InstanceKlass* context_type, KlassDepChange* changes = nullptr);
static void init(); static void init();
static void print_statistics(); NOT_PRODUCT(static void print_statistics();)
}; };
PerfCounter* AbstractClassHierarchyWalker::_perf_find_witness_anywhere_calls_count = nullptr; PerfCounter* AbstractClassHierarchyWalker::_perf_find_witness_anywhere_calls_count = nullptr;

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2005, 2024, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2005, 2026, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -649,7 +649,7 @@ class Dependencies: public ResourceObj {
}; };
friend class Dependencies::DepStream; friend class Dependencies::DepStream;
static void print_statistics(); NOT_PRODUCT(static void print_statistics();)
}; };