Skip to content

Commit b05be6e

Browse files
authored
Update UserAuthSave.java
improper binding to another Method - Fixed
1 parent 19fd99f commit b05be6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/java/com/BugBazaar/controller/UserAuthSave.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static void savepasscode(int passcode) {
5252
}
5353

5454
public static String getSavedUsername() {
55-
return sharedPreferences.getString(KEY_USERNAME, "");
55+
return sharedPreferences1.getString(KEY_USERNAME, "");
5656
}
5757

5858
public static boolean getpasscode_flag() {
@@ -64,7 +64,7 @@ public static String getpasscode() {
6464
}
6565

6666
public static String getSavedPassword() {
67-
return sharedPreferences.getString(KEY_PASSWORD, "");
67+
return sharedPreferences1.getString(KEY_PASSWORD, "");
6868
}
6969

7070
public static boolean isLoggedIn() {

0 commit comments

Comments
 (0)