mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8024007: Misc. cleanup of static agent code
Minor cleanup of static agent code from 8014135
Reviewed-by: dcubed, sspitsyn
This commit is contained in:
parent
7e04c1775c
commit
091edb47c5
5 changed files with 10 additions and 7 deletions
|
@ -144,7 +144,7 @@ public:
|
|||
void set_os_lib(void* os_lib) { _os_lib = os_lib; }
|
||||
AgentLibrary* next() const { return _next; }
|
||||
bool is_static_lib() const { return _is_static_lib; }
|
||||
void set_static_lib(bool static_lib) { _is_static_lib = static_lib; }
|
||||
void set_static_lib(bool is_static_lib) { _is_static_lib = is_static_lib; }
|
||||
bool valid() { return (_state == agent_valid); }
|
||||
void set_valid() { _state = agent_valid; }
|
||||
void set_invalid() { _state = agent_invalid; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue