aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-04-11 17:34:30 -0700
committerScott Jackson <daneren2005@gmail.com>2014-04-11 17:34:30 -0700
commit35ad0b7ee6e1125a32afb09bca19535b60544aa3 (patch)
tree484a5c2cd3e1e19f6de2ef39e9f9d52fa4cf8bd5 /src
parent2f3317fb0f5b4c82245d867564489517c6e3ac0a (diff)
downloaddsub-35ad0b7ee6e1125a32afb09bca19535b60544aa3.tar.gz
dsub-35ad0b7ee6e1125a32afb09bca19535b60544aa3.tar.bz2
dsub-35ad0b7ee6e1125a32afb09bca19535b60544aa3.zip
Missing ;
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/service/DownloadFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadFile.java b/src/github/daneren2005/dsub/service/DownloadFile.java
index d9adc1bf..b3101e0a 100644
--- a/src/github/daneren2005/dsub/service/DownloadFile.java
+++ b/src/github/daneren2005/dsub/service/DownloadFile.java
@@ -424,7 +424,7 @@ public class DownloadFile implements BufferFile {
}
} catch(InterruptedException x) {
- throw x
+ throw x;
} catch(IOException x) {
Util.close(out);
Util.delete(completeFile);