From 5c1b031655225678c5ab31719f9b3dcf1a29a924 Mon Sep 17 00:00:00 2001 From: Akshay Komar Date: Mon, 6 Jan 2025 00:53:51 +0530 Subject: [PATCH 01/14] Rename Constants to Follow Kotlin Naming Conventions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit >This PR refactors constant names in the project to adhere to Kotlin's UPPERCASE_SNAKE_CASE naming convention, improving code readability and maintaining consistency across the codebase. >Renamed the following constants in LoginActivity: >saveProgressDialog → SAVE_PROGRESS_DIALOG >saveErrorMessage → SAVE_ERROR_MESSAGE >saveUsername → SAVE_USERNAME >savePassword → SAVE_PASSWORD >Updated all references to these constants throughout the project. --- .idea/inspectionProfiles/Project_Default.xml | 52 +++++++++++++++++++ .../fr/free/nrw/commons/auth/LoginActivity.kt | 26 +++++----- 2 files changed, 65 insertions(+), 13 deletions(-) diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml index f39734eb4b..ceea8c9643 100644 --- a/.idea/inspectionProfiles/Project_Default.xml +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -2,11 +2,39 @@