Use consistent formatting conventions
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@479 632fc199-4ca6-4c93-a231-07263d6284db
This commit is contained in:
@@ -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
@@ -223,8 +223,8 @@ public class TJCompressor {
|
||||
protected void finalize() throws Throwable {
|
||||
try {
|
||||
close();
|
||||
} catch(Exception e) {
|
||||
}
|
||||
catch(Exception e) {}
|
||||
finally {
|
||||
super.finalize();
|
||||
}
|
||||
|
||||
@@ -220,8 +220,8 @@ public class TJDecompressor {
|
||||
protected void finalize() throws Throwable {
|
||||
try {
|
||||
close();
|
||||
} catch(Exception e) {
|
||||
}
|
||||
catch(Exception e) {}
|
||||
finally {
|
||||
super.finalize();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user