🔀 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,6 +15,7 @@ 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);
}

View file

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