Skip to content

Commit

Permalink
Made changes for Issue #3 - Reorder Modifiers in Java Codebase to Com…
Browse files Browse the repository at this point in the history
…ply with Java Language Specification. Changed position from private final static to private static final in accordance with Java Language Specification
  • Loading branch information
Reva-B98 committed Feb 15, 2024
1 parent d0d25b7 commit 5e52172
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

public class SensorsSettingsFragment extends PreferenceFragmentCompat {

private final static String TAG = SensorsSettingsFragment.class.getSimpleName();
private static final String TAG = SensorsSettingsFragment.class.getSimpleName();

@Override
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
Expand Down

0 comments on commit 5e52172

Please sign in to comment.