mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-12-12 14:01:08 +01:00
Bump "Error Prone" to 2.3.2
and gradle-errorprone-plugin to 0.6.
This commit is contained in:
parent
ec7badfda0
commit
b7ea226c56
65 changed files with 173 additions and 149 deletions
|
|
@ -81,7 +81,13 @@ public class JingleIBBTransport extends JingleContentTransport {
|
|||
return false;
|
||||
}
|
||||
|
||||
return this == other || this.hashCode() == other.hashCode();
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
|
||||
JingleIBBTransport otherTransport = (JingleIBBTransport) other;
|
||||
return this.getSessionId().equals(otherTransport.getSessionId()) &&
|
||||
this.getBlockSize() == otherTransport.getBlockSize();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue