Use consistent formatting conventions
This commit is contained in:
@@ -197,7 +197,8 @@ public class TJExample {
|
|||||||
ImageIO.write(img, outFormat, file);
|
ImageIO.write(img, outFormat, file);
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch(Exception e) {
|
}
|
||||||
|
catch(Exception e) {
|
||||||
System.out.println(e);
|
System.out.println(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -223,8 +223,8 @@ public class TJCompressor {
|
|||||||
protected void finalize() throws Throwable {
|
protected void finalize() throws Throwable {
|
||||||
try {
|
try {
|
||||||
close();
|
close();
|
||||||
} catch(Exception e) {
|
|
||||||
}
|
}
|
||||||
|
catch(Exception e) {}
|
||||||
finally {
|
finally {
|
||||||
super.finalize();
|
super.finalize();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -220,8 +220,8 @@ public class TJDecompressor {
|
|||||||
protected void finalize() throws Throwable {
|
protected void finalize() throws Throwable {
|
||||||
try {
|
try {
|
||||||
close();
|
close();
|
||||||
} catch(Exception e) {
|
|
||||||
}
|
}
|
||||||
|
catch(Exception e) {}
|
||||||
finally {
|
finally {
|
||||||
super.finalize();
|
super.finalize();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user