Code formatting tweaks

This commit is contained in:
DRC
2013-04-27 12:38:20 +00:00
parent 2f83944e9b
commit aaa5ae742a
10 changed files with 940 additions and 880 deletions

View File

@@ -34,7 +34,7 @@ package org.libjpegturbo.turbojpeg;
public class TJScalingFactor {
public TJScalingFactor(int num, int denom) throws Exception {
if(num < 1 || denom < 1)
if (num < 1 || denom < 1)
throw new Exception("Numerator and denominator must be >= 1");
this.num = num;
this.denom = denom;