diff options
| author | Jonathan Bauer | 2014-10-29 17:50:05 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2014-10-29 17:50:05 +0100 |
| commit | c1e013a47f2527f77f946efe452fa523b0d6cec7 (patch) | |
| tree | f4244c1e53e82603b0eef43b962de30c1f35eadf | |
| parent | [client] some comments for UploadTask (diff) | |
| download | tutor-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.java | 4 |
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; |
