Update UserService.java

Signed-off-by: jeet041 <mahorjitendra@gmail.com>
This commit is contained in:
jeet041 2025-05-11 19:26:48 +05:30 committed by GitHub
parent 128883eeda
commit 26d22369f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,9 @@ public class UserService {
public void notifyUser(int userId) {
System.out.println("Main: sending notification to user " + userId);
}
public void notifyUser2(int userId) {
System.out.println("Main: sending notification to user " + userId);
}
public void deleteUser(int userId) {
logDeletion(userId);
}