File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/test/java/javax/money/convert Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -261,10 +261,9 @@ public boolean equals(Object obj) {
261
261
}
262
262
if (obj instanceof DefaultExchangeRate ) {
263
263
DefaultExchangeRate other = (DefaultExchangeRate ) obj ;
264
- return Objects .equals (baseCurrency , other .baseCurrency ) && Objects .equals (conversionContext ,
265
- other .conversionContext )
266
- && Objects .equals (chain , other .chain )
267
- && Objects .equals (factor , other .factor ) && Objects .equals (termCurrency , other .termCurrency );
264
+ return Objects .equals (baseCurrency , other .baseCurrency ) &&
265
+ Objects .equals (conversionContext , other .conversionContext ) &&
266
+ Objects .equals (factor , other .factor ) && Objects .equals (termCurrency , other .termCurrency );
268
267
}
269
268
return false ;
270
269
}
You can’t perform that action at this time.
0 commit comments