mirror of
https://github.com/revanced/jadb.git
synced 2025-05-29 04:50:12 +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;
|
||||
|
||||
RemoteFile that = (RemoteFile) o;
|
||||
|
||||
if (!path.equals(that.path)) return false;
|
||||
|
||||
return true;
|
||||
return path.equals(that.path);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user