diff options
author | Simon Rettberg | 2023-02-09 15:59:52 +0100 |
---|---|---|
committer | Simon Rettberg | 2023-02-09 15:59:52 +0100 |
commit | 1c65f3fb9d1b114f176a47f9ea69b4ff34e37d33 (patch) | |
tree | f6ccdba08d80291d15642ab6c2e2295e64e58568 /dozentenmodul | |
parent | [client] Allow Branding in external locations (diff) | |
download | tutor-module-1c65f3fb9d1b114f176a47f9ea69b4ff34e37d33.tar.gz tutor-module-1c65f3fb9d1b114f176a47f9ea69b4ff34e37d33.tar.xz tutor-module-1c65f3fb9d1b114f176a47f9ea69b4ff34e37d33.zip |
[client] Remove debug spam -.-
Diffstat (limited to 'dozentenmodul')
-rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/Branding.java | 2 |
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); |