File tree Expand file tree Collapse file tree
javaSE/src/main/java/com/smartdevicelink/managers/file/filetypes Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -215,8 +215,8 @@ public int hashCode() {
215215 result += ((getFilePath () == null ) ? 0 : Integer .rotateLeft (getFilePath ().hashCode (), 2 ));
216216 result += ((getFileData () == null ) ? 0 : Integer .rotateLeft (getFileData ().hashCode (), 3 ));
217217 result += ((getType () == null ) ? 0 : Integer .rotateLeft (getType ().hashCode (), 4 ));
218- result += (( Boolean . valueOf ( isStaticIcon ) == null ) ? 0 : Integer .rotateLeft (Boolean .valueOf (isStaticIcon ) .hashCode (), 5 ) );
219- result += (( Boolean . valueOf ( isPersistent ()) == null ) ? 0 : Integer .rotateLeft (Boolean .valueOf (isPersistent ()).hashCode (), 6 ) );
218+ result += Integer .rotateLeft (Boolean .valueOf (isStaticIcon ()) .hashCode (), 5 );
219+ result += Integer .rotateLeft (Boolean .valueOf (isPersistent ()).hashCode (), 6 );
220220 return result ;
221221 }
222222
You can’t perform that action at this time.
0 commit comments