Skip to content

Commit

Permalink
Update UserAuthSave.java
Browse files Browse the repository at this point in the history
improper binding to another Method - Fixed
  • Loading branch information
banditAmit authored Aug 3, 2024
1 parent 19fd99f commit b05be6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/BugBazaar/controller/UserAuthSave.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static void savepasscode(int passcode) {
}

public static String getSavedUsername() {
return sharedPreferences.getString(KEY_USERNAME, "");
return sharedPreferences1.getString(KEY_USERNAME, "");
}

public static boolean getpasscode_flag() {
Expand All @@ -64,7 +64,7 @@ public static String getpasscode() {
}

public static String getSavedPassword() {
return sharedPreferences.getString(KEY_PASSWORD, "");
return sharedPreferences1.getString(KEY_PASSWORD, "");
}

public static boolean isLoggedIn() {
Expand Down

0 comments on commit b05be6e

Please sign in to comment.