tushartushar / DesigniteJava

Detects smells and computes metrics of Java code
https://www.designite-tools.com/products-dj
Apache License 2.0
172 stars 64 forks source link

Re-implemented Magic number smell detector #44

Closed AntonisGkortzis closed 6 years ago

AntonisGkortzis commented 6 years ago

Revised the Magic Number smell detector. It works for all literals detected in a method, excluding 0s, 1s and those in array initialisation. No unit tests were added for this functionality.

Also refactored the recently implemented smell detectors in order to follow the alphabetical order.

Finally, removed several unused imports.