Skip to content

Commit

Permalink
J-TRIB-227: code formatting indentation fix
Browse files Browse the repository at this point in the history
- reasoning: encountered a strange occurence of indentation errors. In Intellij, everything appeared indented at the same levels. On github and on the local git diff cmd line, the newly added line was indented further than everything else.
- fix: deleted apparent soft returns and spaces in the code block and used hard returns and tabs. Everything is now equally indented.
  • Loading branch information
mrsbluerose committed Dec 14, 2023
1 parent 2991099 commit edebffc
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ public class DatasourceConfig {

@Bean(name = "dataSource")
public DriverManagerDataSource dataSource() {
DriverManagerDataSource driverManagerDataSource = new DriverManagerDataSource();
driverManagerDataSource.setDriverClassName("com.mysql.cj.jdbc.Driver");
driverManagerDataSource.setUrl("jdbc:mysql://localhost:3306/basemobileapp_db?verifyServerCertificate=false&useSSL=true&useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC");
driverManagerDataSource.setUsername("basemobileappdbuser");
driverManagerDataSource.setPassword("supersecure");
return driverManagerDataSource;
DriverManagerDataSource driverManagerDataSource = new DriverManagerDataSource();
driverManagerDataSource.setDriverClassName("com.mysql.cj.jdbc.Driver");
driverManagerDataSource.setUrl("jdbc:mysql://localhost:3306/basemobileapp_db?verifyServerCertificate=false&useSSL=true&useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC");
driverManagerDataSource.setUsername("basemobileappdbuser");
driverManagerDataSource.setPassword("supersecure");
return driverManagerDataSource;
}
}

0 comments on commit edebffc

Please sign in to comment.