🔀 Merged via GitHub API

Update test_conflict.java
This commit is contained in:
jeet041 2025-05-09 16:35:21 +05:30 committed by GitHub
commit e050e9f3be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View file

@ -15,7 +15,8 @@ public class UserService {
public void notifyUser(int userId) { public void notifyUser(int userId) {
System.out.println("Main: sending notification to user " + userId); System.out.println("Main: sending notification to user " + userId);
} }
public void notifyUser2(int userId) {
public void notifyUser2(int userId) {
System.out.println("main: sending notification to user " + userId); System.out.println("main: sending notification to user " + userId);
} }
@ -26,4 +27,4 @@ public class UserService {
private void logDeletion(int userId) { private void logDeletion(int userId) {
System.out.println("Main: user " + userId + " deleted"); System.out.println("Main: user " + userId + " deleted");
} }
} }

View file

@ -5,6 +5,6 @@ public class HelloWorld {
public static void helloWorld() { public static void helloWorld() {
System.out.println("Hello, World! main"); System.out.println("Hello, World! main");
System.out.println("Hello, World! main"); System.out.println("Hello, World! dev");
} }
} }