MCPcopy Create free account
hub / github.com/annmuor/jnode / equals

Method equals

jnode-core/src/jnode/dto/Link.java:145–160  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

143 }
144
145 @Override
146 public boolean equals(Object obj) {
147 if (this == obj)
148 return true;
149 if (obj == null)
150 return false;
151 if (getClass() != obj.getClass())
152 return false;
153 Link other = (Link) obj;
154 if (id == null) {
155 if (other.id != null)
156 return false;
157 } else if (!id.equals(other.id))
158 return false;
159 return true;
160 }
161
162}

Callers 15

runMethod · 0.45
loadMethod · 0.45
processMessageMethod · 0.45
processMethod · 0.45
messageEqualsMethod · 0.45
m_fileMethod · 0.45
checkPasswordMethod · 0.45
m_nullMethod · 0.45
addMethod · 0.45
isSameDayMethod · 0.45
isSameHourMethod · 0.45
checkDetailsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected