ashishbhandari / AndroidTabbedDialog

Android Tabbed Dialog containing fragments
Apache License 2.0
128 stars 37 forks source link

Multiple quality improvements - squid:SwitchLastCaseIsDefaultCheck, s… #4

Closed m-ezzat closed 8 years ago

m-ezzat commented 8 years ago

This pull request is focused on resolving occurrences of Sonar rules squid:SwitchLastCaseIsDefaultCheck - "switch" statements should end with a "default" clause squid:S1151 - "switch case" clauses should not have too many lines pmd:ImmutableField - Immutable Field

You can find more information about the issues here: https://dev.eclipse.org/sonar/coding_rules#q=squid:SwitchLastCaseIsDefaultCheck https://dev.eclipse.org/sonar/coding_rules#q=squid:S1151 https://dev.eclipse.org/sonar/coding_rules#q=pmd:ImmutableField

Please let me know if you have any questions.

M-Ezzat