Identity.combine(other) should just return other.

This commit is contained in:
sk89q 2014-07-01 12:41:52 -07:00
parent 63411b427a
commit e3ae22da80

View File

@ -41,7 +41,7 @@ public class Identity implements Transform {
if (other instanceof Identity) {
return this;
} else {
return new CombinedTransform(this, other);
return other;
}
}
}