summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/Config.java
diff options
context:
space:
mode:
authorSimon Rettberg2015-07-21 12:41:11 +0200
committerSimon Rettberg2015-07-21 12:41:11 +0200
commit0b99078ca318bb8ef79884994ee8835b72b195e0 (patch)
tree5f2b951c8e929f11de0172a88958f6253da91585 /dozentenmodul/src/main/java/org/openslx/dozmod/Config.java
parent[client] checkbox in tablecolumns [WIP] far from ready (diff)
downloadtutor-module-0b99078ca318bb8ef79884994ee8835b72b195e0.tar.gz
tutor-module-0b99078ca318bb8ef79884994ee8835b72b195e0.tar.xz
tutor-module-0b99078ca318bb8ef79884994ee8835b72b195e0.zip
[client] Created TransferTask base class for uploads and downloads
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/Config.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/Config.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/Config.java b/dozentenmodul/src/main/java/org/openslx/dozmod/Config.java
index df1894bc..3ef0edcf 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/Config.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/Config.java
@@ -9,9 +9,9 @@ import java.io.InputStream;
import java.util.Properties;
import org.apache.log4j.Logger;
-import org.openslx.dozmod.util.FormatHelper;
import org.openslx.util.QuickTimer;
import org.openslx.util.QuickTimer.Task;
+import org.openslx.util.Util;
/**
* Represents the configuration of the client
@@ -334,7 +334,7 @@ public class Config {
* @return
*/
private static int getInteger(String key, int defaultValue) {
- return FormatHelper.parseInt(prop.getProperty(key), defaultValue);
+ return Util.parseInt(prop.getProperty(key), defaultValue);
}
/**