MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / equals

Method equals

java/src/org/openqa/selenium/grid/data/Slot.java:114–125  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

112 }
113
114 @Override
115 public boolean equals(Object o) {
116 if (!(o instanceof Slot)) {
117 return false;
118 }
119
120 Slot that = (Slot) o;
121 return Objects.equals(this.id, that.id)
122 && Objects.equals(this.stereotype, that.stereotype)
123 && Objects.equals(this.session, that.session)
124 && Objects.equals(this.lastStarted.toEpochMilli(), that.lastStarted.toEpochMilli());
125 }
126
127 @Override
128 public int hashCode() {

Callers 15

mainMethod · 0.45
launchMethod · 0.45
getAttributeInfoMethod · 0.45
findGetterMethod · 0.45
findSetterMethod · 0.45
findMethodMethod · 0.45
generateObjectNameMethod · 0.45
createHandlersMethod · 0.45
getUpNodesMethod · 0.45
getUpNodeCountMethod · 0.45
getDownNodeCountMethod · 0.45
getActiveSlotsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected