mirror of https://github.com/apache/cloudstack.git
fix copilot comments
This commit is contained in:
parent
ca9fc493c4
commit
0526416e4b
|
|
@ -500,7 +500,7 @@ public abstract class AgentAttache {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
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 {
|
protected class Alarm extends ManagedContextRunnable {
|
||||||
|
|
|
||||||
|
|
@ -151,7 +151,7 @@ public class DirectAgentAttache extends AgentAttache {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hash(super.hashCode(), _HostPingRetryCount, _HostPingRetryTimer, _resource, _futures, _seq, tasks, _outstandingTaskCount, _outstandingCronTaskCount);
|
return super.hashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected class PingTask extends ManagedContextRunnable {
|
protected class PingTask extends ManagedContextRunnable {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue