SandroMachado / openalpr-android

Android Automatic License Plate Recognition library (http://www.openalpr.com) ported for android.
Apache License 2.0
770 stars 272 forks source link

Multiple code quality fix-2 #28

Closed faisal-hameed closed 8 years ago

faisal-hameed commented 8 years ago

This pull request is focused on resolving occurrences of Sonar rules squid:S1170 - Public constants should be declared "static final" rather than merely "final". squid:S1197 - Array designators "[]" should be on the type, not the variable. squid:SwitchLastCaseIsDefaultCheck - "switch" statements should end with a "default" clause. You can find more information about the issues here: https://dev.eclipse.org/sonar/rules/show/squid:S1170 https://dev.eclipse.org/sonar/rules/show/squid:S1197 https://dev.eclipse.org/sonar/rules/show/squid:SwitchLastCaseIsDefaultCheck

Please let me know if you have any questions.

Faisal Hameed