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

Code quality fix - Method names should comply with a naming convention. #25

Closed faisal-hameed closed 8 years ago

faisal-hameed commented 8 years ago

This pull request is focused on resolving occurrences of Sonar rule squid:S00100 - Method names should comply with a naming convention. You can find more information about the issue here: https://dev.eclipse.org/sonar/rules/show/squid:S00100

Please let me know if you have any questions.

Faisal Hameed

SandroMachado commented 8 years ago

I don't like this format for methods name, usually in java we don't see this methods names.

faisal-hameed commented 8 years ago

@SandroMachado In general people use method names which satisfies this regular expression *^[a-z][a-zA-Z0-9]$**. Please check this sonar rule.

SandroMachado commented 8 years ago

Please also rename in the places where the methods are used.

faisal-hameed commented 8 years ago

@SandroMachado Changes done.

SandroMachado commented 8 years ago

@faisal-hameed thanks 👍