mirror of
https://github.com/revanced/jadb.git
synced 2025-05-30 21:30:16 +02:00
Fix: Return of boolean expressions should not be wrapped into an "if-then-else" statement (squid:S1126)
This commit is contained in:
parent
1a34d13bbb
commit
188aec84d6
@ -21,10 +21,7 @@ public class RemoteFile {
|
|||||||
if (o == null || getClass() != o.getClass()) return false;
|
if (o == null || getClass() != o.getClass()) return false;
|
||||||
|
|
||||||
RemoteFile that = (RemoteFile) o;
|
RemoteFile that = (RemoteFile) o;
|
||||||
|
return path.equals(that.path);
|
||||||
if (!path.equals(that.path)) return false;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user