Skip to content

Commit 61430a9

Browse files
authored
Update UserRepository.java
1 parent 35cfc0e commit 61430a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

caching/src/main/java/com/fd/cache/repository/UserRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public User getUser(int id) {
1717
System.out.println("Reading john doe from repository...");
1818
return User.builder().id(1).name("john").surname("doe").build();
1919
} else if (id == 2) {
20-
System.out.println("Reading cansu from repository...");
20+
System.out.println("Reading jane doe from repository...");
2121
return User.builder().id(2).name("jane").surname("doe").build();
2222
}
2323
return null;

0 commit comments

Comments
 (0)