summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src
diff options
context:
space:
mode:
authorSimon Rettberg2023-02-09 15:59:52 +0100
committerSimon Rettberg2023-02-09 15:59:52 +0100
commit1c65f3fb9d1b114f176a47f9ea69b4ff34e37d33 (patch)
treef6ccdba08d80291d15642ab6c2e2295e64e58568 /dozentenmodul/src
parent[client] Allow Branding in external locations (diff)
downloadtutor-module-1c65f3fb9d1b114f176a47f9ea69b4ff34e37d33.tar.gz
tutor-module-1c65f3fb9d1b114f176a47f9ea69b4ff34e37d33.tar.xz
tutor-module-1c65f3fb9d1b114f176a47f9ea69b4ff34e37d33.zip
[client] Remove debug spam -.-
Diffstat (limited to 'dozentenmodul/src')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/Branding.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/Branding.java b/dozentenmodul/src/main/java/org/openslx/dozmod/Branding.java
index 34dceee3..7fbcd308 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/Branding.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/Branding.java
@@ -112,13 +112,11 @@ public final class Branding {
}
}
// Fill in missing fields
- PROPERTIES.store(System.out, "");
for (Entry<String, String> it : DEFAULTS.entrySet()) {
if (!PROPERTIES.containsKey(it.getKey())) {
PROPERTIES.setProperty(it.getKey(), it.getValue());
}
}
- PROPERTIES.store(System.out, "");
} catch (Throwable t) {
t.printStackTrace();
System.exit(1);