Skip to content

Commit

Permalink
v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcGueury committed Mar 12, 2024
1 parent 367dbfc commit 53738fe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class DeptResource {
private void init() {
try {
System.out.println("Insert row " + repository.save(new Dept(10, "ACCOUNTING", "BRUSSELS")));
System.out.println("Insert row " + repository.save(new Dept(20, "RESEARCH", "SPRING NOSQL")));
System.out.println("Insert row " + repository.save(new Dept(20, "RESEARCH", "JAKARTA NOSQL")));
System.out.println("Insert row " + repository.save(new Dept(30, "SALES", "ROME")));
System.out.println("Insert row " + repository.save(new Dept(40, "OPERATIONS", "MADRID")));
} catch (Exception e ) {
Expand Down

This file was deleted.

0 comments on commit 53738fe

Please sign in to comment.