MCPcopy Create free account
hub / github.com/diyhi/bbs / equals

Method equals

src/main/java/cms/model/staff/SysUsers.java:249–264  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

247 }
248
249 @Override
250 public boolean equals(Object obj) {
251 if (this == obj)
252 return true;
253 if (obj == null)
254 return false;
255 if (getClass() != obj.getClass())
256 return false;
257 SysUsers other = (SysUsers) obj;
258 if (userId == null) {
259 if (other.userId != null)
260 return false;
261 } else if (!userId.equals(other.userId))
262 return false;
263 return true;
264 }
265
266 public boolean isAccountNonExpired() {
267 return accountNonExpired;

Callers 15

mainMethod · 0.45
runMethod · 0.45
getByNameSafeMethod · 0.45
addMethod · 0.45
isInstallSystemMethod · 0.45
filterHtmlMethod · 0.45
updateTypePathMethod · 0.45
correctionHiddenTagMethod · 0.45
analysisHiddenTagMethod · 0.45
processHiddenTagMethod · 0.45
processVideoInfoMethod · 0.45
correctionReplyTagMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected