Skip to content

Commit

Permalink
typo change
Browse files Browse the repository at this point in the history
  • Loading branch information
chenww05 committed Oct 7, 2015
1 parent 767b288 commit 3eaf91e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/db/DBConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class DBConnection {
public static final String PORT = "3306";
public static final String DBNAME = "mysql";
public static final String USERNAME = "root";
public static final String PASSWORD = "rooot";
public static final String PASSWORD = "root";
public static final String URL;

static {
Expand Down
1 change: 1 addition & 0 deletions server/src/db/DBYelpImport.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public static void main(String[] args) {
Connection conn = null;

try {
System.out.println("Connecting to \n" + DBConnection.URL);
conn = DriverManager.getConnection(DBConnection.URL);
} catch (SQLException e) {
System.out.println("SQLException " + e.getMessage());
Expand Down

0 comments on commit 3eaf91e

Please sign in to comment.