fix copilot comments

This commit is contained in:
Pearl Dsilva 2026-01-13 16:33:51 -05:00
parent ca9fc493c4
commit 0526416e4b
2 changed files with 2 additions and 2 deletions

View File

@ -500,7 +500,7 @@ public abstract class AgentAttache {
@Override
public int hashCode() {
return Objects.hash(logger, _id, _uuid, _name, _waitForList, _requests, _currentSequence, _status, _maintenance, _nextSequence, _agentMgr);
return Objects.hash(_id, _uuid, _name);
}
protected class Alarm extends ManagedContextRunnable {

View File

@ -151,7 +151,7 @@ public class DirectAgentAttache extends AgentAttache {
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), _HostPingRetryCount, _HostPingRetryTimer, _resource, _futures, _seq, tasks, _outstandingTaskCount, _outstandingCronTaskCount);
return super.hashCode();
}
protected class PingTask extends ManagedContextRunnable {