summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2014-10-29 17:50:05 +0100
committerJonathan Bauer2014-10-29 17:50:05 +0100
commitc1e013a47f2527f77f946efe452fa523b0d6cec7 (patch)
treef4244c1e53e82603b0eef43b962de30c1f35eadf
parent[client] some comments for UploadTask (diff)
downloadtutor-module-c1e013a47f2527f77f946efe452fa523b0d6cec7.tar.gz
tutor-module-c1e013a47f2527f77f946efe452fa523b0d6cec7.tar.xz
tutor-module-c1e013a47f2527f77f946efe452fa523b0d6cec7.zip
[client] clearer comments for ResourceLoader
-rw-r--r--dozentenmodul/src/main/java/util/ResourceLoader.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/util/ResourceLoader.java b/dozentenmodul/src/main/java/util/ResourceLoader.java
index 7c3c9c62..731cedeb 100644
--- a/dozentenmodul/src/main/java/util/ResourceLoader.java
+++ b/dozentenmodul/src/main/java/util/ResourceLoader.java
@@ -100,9 +100,9 @@ public class ResourceLoader {
}
/**
- * Tries to load the given resource as File
+ * Tries to load the given resource treating it as a text file
* @param path Resource path to load
- * @return the file of the loaded resource
+ * @return content of the loaded resource as String
*/
public static String getTextFile(String path) {
String fileContent = null;