diff options
| author | Simon Rettberg | 2015-07-23 22:01:54 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2015-07-23 22:01:54 +0200 |
| commit | 0c0dc97fb906f91e0770208b8c24896f6aee91dc (patch) | |
| tree | 8d8903ad613ce4096fa1844b4e5cd736523e77db /dozentenmodulserver/src/main/java | |
| parent | [client] Add missing disposal-check (diff) | |
| download | tutor-module-0c0dc97fb906f91e0770208b8c24896f6aee91dc.tar.gz tutor-module-0c0dc97fb906f91e0770208b8c24896f6aee91dc.tar.xz tutor-module-0c0dc97fb906f91e0770208b8c24896f6aee91dc.zip | |
[server] Add missing member initialization
Diffstat (limited to 'dozentenmodulserver/src/main/java')
| -rw-r--r-- | dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/fileserv/ActiveUpload.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/fileserv/ActiveUpload.java b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/fileserv/ActiveUpload.java index 469fa8dc..f2b95aaa 100644 --- a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/fileserv/ActiveUpload.java +++ b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/fileserv/ActiveUpload.java @@ -100,7 +100,7 @@ public class ActiveUpload implements HashCheckCallback { /** * Whether file is (still) writable. Used for the file transfer callbacks. */ - private boolean fileWritable; + private boolean fileWritable = true; private static final HashChecker hashChecker; |
