Skip to content

Commit 78b0e44

Browse files
carlbennettDavnit
authored andcommitted
Fix incorrect newline pattern everywhere
1 parent 347cf80 commit 78b0e44

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

BNLSProtocol/BNLSServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void run() {
3939
Out.error("JBLS", "Could not bind port " + Constants.BNLSPort + ". JBLS server is disabled.");
4040
return;
4141
}catch (IOException e){
42-
Out.error("JBLS","Could not create socket (Port: " + Constants.BNLSPort + ") - Shutting down JBLS. \n\r"+e.toString());
42+
Out.error("JBLS","Could not create socket (Port: " + Constants.BNLSPort + ") - Shutting down JBLS. \r\n"+e.toString());
4343
Controller.disableJBLSServer();
4444
return;
4545
}

HTTP/HTTPServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public void run(){
1919
Out.error("HTTP", "Could not bind port " + Constants.HTTPPort + ". HTTP server is disabled.");
2020
return;
2121
}catch (IOException e){
22-
Out.error("HTTP","Could not create socket (Port: " + Constants.HTTPPort + ") - Shutting down the HTTP server. \n\r"+e.toString());
22+
Out.error("HTTP","Could not create socket (Port: " + Constants.HTTPPort + ") - Shutting down the HTTP server. \r\n"+e.toString());
2323
return;
2424
}
2525
listening=true;
@@ -86,4 +86,4 @@ public static String buildHeader(int status) {
8686
toSend += "Connection: close" + CRLF;
8787
return toSend;
8888
}
89-
}
89+
}

Hashing/CheckRevisionV1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ public static int getVersion(String[] files, int prod){
344344
}
345345
return ver;
346346
}catch(FileNotFoundException e){
347-
Out.error("HashMain", "Hash Exception(Exe version): \n\r" +
347+
Out.error("HashMain", "Hash Exception(Exe version): \r\n" +
348348
"[getVersion] File Not Found/Accessible (" + files[0] + ")");
349349
}catch(IOException e){
350350
Out.error("HashMain", "Hash Exception(Exe Version): [getVersion] IOException");

Hashing/HashMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public static CheckrevisionResults getRevision(int prod, String formula, String
136136
}
137137
}
138138

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

0 commit comments

Comments
 (0)