mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
🔀 Merged via GitHub API
Update test_conflict.java
This commit is contained in:
commit
e050e9f3be
2 changed files with 5 additions and 4 deletions
|
@ -15,7 +15,8 @@ public class UserService {
|
|||
public void notifyUser(int 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);
|
||||
}
|
||||
|
||||
|
@ -26,4 +27,4 @@ public class UserService {
|
|||
private void logDeletion(int userId) {
|
||||
System.out.println("Main: user " + userId + " deleted");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue