We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35cfc0e commit 61430a9Copy full SHA for 61430a9
caching/src/main/java/com/fd/cache/repository/UserRepository.java
@@ -17,7 +17,7 @@ public User getUser(int id) {
17
System.out.println("Reading john doe from repository...");
18
return User.builder().id(1).name("john").surname("doe").build();
19
} else if (id == 2) {
20
- System.out.println("Reading cansu from repository...");
+ System.out.println("Reading jane doe from repository...");
21
return User.builder().id(2).name("jane").surname("doe").build();
22
}
23
return null;
0 commit comments