scottyab / secure-preferences

Android Shared preference wrapper than encrypts the values of Shared Preferences. It's not bullet proof security but rather a quick win for incrementally making your android app more secure.
1.53k stars 235 forks source link

General Code Improvement 3 #46

Closed zeeshanasghar closed 8 years ago

zeeshanasghar commented 8 years ago

This pull request is focused on resolving occurrences of Sonar rule

squid:HiddenFieldCheck Local variables should not shadow class fields squid:MissingDeprecatedCheck Deprecated elements should have both the annotation and the Javadoc tag squid:S3008 Static non-final field names should comply with a naming convention squid:S1148 Throwable.printStackTrace(...) should not be called

You can find more information about the issue here: https://dev.eclipse.org/sonar/rules/show/squid:HiddenFieldCheck https://dev.eclipse.org/sonar/rules/show/squid:MissingDeprecatedCheck https://dev.eclipse.org/sonar/rules/show/squid:S3008 https://dev.eclipse.org/sonar/rules/show/squid:S1148

Please let me know if you have any questions.

Zeeshan Asghar