Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Network Health
Metrics
Onionoo
Commits
6deaf25b
Commit
6deaf25b
authored
Aug 20, 2018
by
Karsten Loesing
Browse files
Remove unnecessary null check.
parent
377c7666
Changes
1
Show whitespace changes
Inline
Side-by-side
src/main/java/org/torproject/onionoo/updater/TorVersion.java
View file @
6deaf25b
...
...
@@ -104,7 +104,7 @@ public class TorVersion implements Comparable<TorVersion> {
@Override
public
boolean
equals
(
Object
other
)
{
return
null
!=
other
&&
other
instanceof
TorVersion
return
other
instanceof
TorVersion
&&
this
.
compareTo
((
TorVersion
)
other
)
==
0
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment