We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 797fb20 commit 44bc784Copy full SHA for 44bc784
sampling-message-server/src/main/java/de/dhbw/ravensburg/verteiltesysteme/server/Main.java
@@ -60,12 +60,12 @@ public static void main(String[] args) {
60
*
61
* @param errorMessage Message to be displayed on the console during the program shutdown
62
*/
63
- private static void exitWithError(String errorMessage) {
+ private static void exitWithError(final String errorMessage) {
64
log.error(errorMessage);
65
exitWithHelpScreen(1);
66
}
67
68
- private static void exitWithHelpScreen(int exitCode) {
+ private static void exitWithHelpScreen(final int exitCode) {
69
new HelpFormatter().printHelp("sampling-message-server", defaultOptions());
70
System.exit(exitCode);
71
0 commit comments