Skip to content

Commit

Permalink
Fix incorrect newline pattern everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett authored and Davnit committed Aug 16, 2018
1 parent 347cf80 commit 78b0e44
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion BNLSProtocol/BNLSServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void run() {
Out.error("JBLS", "Could not bind port " + Constants.BNLSPort + ". JBLS server is disabled.");
return;
}catch (IOException e){
Out.error("JBLS","Could not create socket (Port: " + Constants.BNLSPort + ") - Shutting down JBLS. \n\r"+e.toString());
Out.error("JBLS","Could not create socket (Port: " + Constants.BNLSPort + ") - Shutting down JBLS. \r\n"+e.toString());
Controller.disableJBLSServer();
return;
}
Expand Down
4 changes: 2 additions & 2 deletions HTTP/HTTPServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void run(){
Out.error("HTTP", "Could not bind port " + Constants.HTTPPort + ". HTTP server is disabled.");
return;
}catch (IOException e){
Out.error("HTTP","Could not create socket (Port: " + Constants.HTTPPort + ") - Shutting down the HTTP server. \n\r"+e.toString());
Out.error("HTTP","Could not create socket (Port: " + Constants.HTTPPort + ") - Shutting down the HTTP server. \r\n"+e.toString());
return;
}
listening=true;
Expand Down Expand Up @@ -86,4 +86,4 @@ public static String buildHeader(int status) {
toSend += "Connection: close" + CRLF;
return toSend;
}
}
}
2 changes: 1 addition & 1 deletion Hashing/CheckRevisionV1.java
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ public static int getVersion(String[] files, int prod){
}
return ver;
}catch(FileNotFoundException e){
Out.error("HashMain", "Hash Exception(Exe version): \n\r" +
Out.error("HashMain", "Hash Exception(Exe version): \r\n" +
"[getVersion] File Not Found/Accessible (" + files[0] + ")");
}catch(IOException e){
Out.error("HashMain", "Hash Exception(Exe Version): [getVersion] IOException");
Expand Down
2 changes: 1 addition & 1 deletion Hashing/HashMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static CheckrevisionResults getRevision(int prod, String formula, String
}
}

Out.error("HashMain", "Hash Exception(version check): \n\r" +
Out.error("HashMain", "Hash Exception(version check): \r\n" +
"[CheckRevision] Files Not Found/Accessible (" + Constants.prods[prod-1] + ") (" + fileList + ")");
}catch(IOException e){
Out.error("HashMain", "Hash Exception(version check): [CheckRevision] IOException (" + Constants.prods[prod-1] + ")");
Expand Down

0 comments on commit 78b0e44

Please sign in to comment.