8024007: Misc. cleanup of static agent code

Minor cleanup of static agent code from 8014135

Reviewed-by: dcubed, sspitsyn
This commit is contained in:
Bill Pittore 2013-09-11 20:03:34 -04:00
parent 7e04c1775c
commit 091edb47c5
5 changed files with 10 additions and 7 deletions

View file

@ -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; }