medbioinf / pia

:books: :microscope: PIA - Protein Inference Algorithms
https://github.com/medbioinf/pia
Other
22 stars 9 forks source link

Code refactoring for HashCode generation #139

Closed ypriverol closed 5 years ago

ypriverol commented 5 years ago

The current code uses HashCodeBuilder as a mechanism to create the HashCode and equals. This is not efficient because every time a comparison is performed then an Object needs to be created.

@julianu

ypriverol commented 5 years ago

the following PR address this issue: https://github.com/mpc-bioinformatics/pia/pull/141

julianu commented 5 years ago

Thanks for the improvement!