mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
🤖 Applied provided resolved content to 2 merge conflicts
This commit is contained in:
commit
4bd8142776
2 changed files with 6 additions and 5 deletions
|
@ -15,8 +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("dev: sending notification to user " + userId);
|
||||
|
||||
public void notifyUser2(int userId) {
|
||||
System.out.println("main: sending notification to user " + userId);
|
||||
}
|
||||
|
||||
public void deleteUser(int 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! dev");
|
||||
System.out.println("Hello, World! dev");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue