Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/demo/bankapp/BankApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

@SpringBootApplication
public class BankApplication {

//test
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

space

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added

public static void main(String[] args) {
SpringApplication.run(BankApplication.class, args);
}
Expand All @@ -17,5 +17,5 @@ public static void main(String[] args) {
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}

//test
}