From c96803dc8b480427bca5b1c6b8c4e8693bc90b92 Mon Sep 17 00:00:00 2001 From: Qizheng Xing Date: Tue, 3 Jun 2025 03:09:18 +0000 Subject: [PATCH] 8358035: Remove unused `compute_fingerprint` declaration in `ClassFileStream` Reviewed-by: ccheung, iklam --- src/hotspot/share/classfile/classFileStream.cpp | 1 - src/hotspot/share/classfile/classFileStream.hpp | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/hotspot/share/classfile/classFileStream.cpp b/src/hotspot/share/classfile/classFileStream.cpp index 382bd58af2b..dc5329a65f2 100644 --- a/src/hotspot/share/classfile/classFileStream.cpp +++ b/src/hotspot/share/classfile/classFileStream.cpp @@ -23,7 +23,6 @@ */ #include "classfile/classFileStream.hpp" -#include "classfile/classLoader.hpp" #include "classfile/vmSymbols.hpp" #include "memory/resourceArea.hpp" diff --git a/src/hotspot/share/classfile/classFileStream.hpp b/src/hotspot/share/classfile/classFileStream.hpp index 135a34bdeee..7f7e4ccacd5 100644 --- a/src/hotspot/share/classfile/classFileStream.hpp +++ b/src/hotspot/share/classfile/classFileStream.hpp @@ -156,8 +156,6 @@ class ClassFileStream: public ResourceObj { // Tells whether eos is reached bool at_eos() const { return _current == _buffer_end; } - uint64_t compute_fingerprint() const; - bool from_class_file_load_hook() const { return _from_class_file_load_hook; } };