Use consistent formatting conventions

This commit is contained in:
DRC
2011-03-01 20:03:32 +00:00
parent ce03e93dfd
commit e701ed74c0
5 changed files with 824 additions and 900 deletions

View File

@@ -197,7 +197,8 @@ public class TJExample {
ImageIO.write(img, outFormat, file);
}
} catch(Exception e) {
}
catch(Exception e) {
System.out.println(e);
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -223,8 +223,8 @@ public class TJCompressor {
protected void finalize() throws Throwable {
try {
close();
} catch(Exception e) {
}
catch(Exception e) {}
finally {
super.finalize();
}

View File

@@ -220,8 +220,8 @@ public class TJDecompressor {
protected void finalize() throws Throwable {
try {
close();
} catch(Exception e) {
}
catch(Exception e) {}
finally {
super.finalize();
}