Skip to content

Commit

Permalink
Merge branch 'main' of
Browse files Browse the repository at this point in the history
  • Loading branch information
Saefurukawa committed May 1, 2024
1 parent 491cfa3 commit 505a50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HealthHaven/src/org/healthhaven/db/models/AccountDAO.java
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public static JSONObject viewUserInformation(Connection conn, String doctorId, S
try (ResultSet rs = stmt.executeQuery()) {
if (!rs.next()) { // If ResultSet is empty, no records are found for the given IDs.
serverResponse.put("result", "SUCCESS");
serverResponse.put("reason", "No records found for the given user ID!!!!!");
serverResponse.put("reason", "No records found for the given user ID!");
return serverResponse;
}

Expand Down

0 comments on commit 505a50f

Please sign in to comment.