Fixed typo.

This commit is contained in:
Michael Bayne
2011-08-05 16:47:39 -07:00
parent 5e7529d969
commit a537b6627d
@@ -256,7 +256,7 @@ public class AffineTransform extends AbstractTransform
return Transforms.multiply((AffineTransform)other, this, new AffineTransform()); return Transforms.multiply((AffineTransform)other, this, new AffineTransform());
} else { } else {
AffineTransform oaff = new AffineTransform(other); AffineTransform oaff = new AffineTransform(other);
return Transforms.multiplay(oaff, this, oaff); return Transforms.multiply(oaff, this, oaff);
} }
} }