Skip to content

Commit

Permalink
back up again
Browse files Browse the repository at this point in the history
  • Loading branch information
wdn5349 authored Apr 30, 2024
1 parent 1b743bd commit 5d9e9b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cse3310/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ public static void main(String[] args) {
System.out.println(envPort);
int httpPort = 9026;
if (envPort != null) {
httpPort = Integer.valueOf("envPort");
httpPort = Integer.valueOf(envPort);
}

HttpServer H = new HttpServer(httpPort, "./html");
Expand Down

0 comments on commit 5d9e9b4

Please sign in to comment.