Fix code accidentally commented out.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24920 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2007-03-22 16:07:25 +00:00
parent 051f24a8b3
commit 82bf84f827

View file

@ -399,7 +399,6 @@ static NSAffineTransformStruct identityTransform = {
*/
- (void) scaleXBy: (float)scaleX yBy: (float)scaleY
{
/*
if (_isIdentity && scaleX == 1.0)
{
if (scaleY == 1.0)
@ -429,7 +428,7 @@ static NSAffineTransformStruct identityTransform = {
return;
}
}
*/
A *= scaleX;
B *= scaleX;
C *= scaleY;