Kill old transform propTypes/attributes

Summary: I can't find anywhere these are being used by the bridge / native
views anymore. I don't think they work anymore. ART has a similar
API but uses a different code path.

We might as well clean this up. Makes it easier to reason about.

@​public

Reviewed By: @vjeux

Differential Revision: D2445353
This commit is contained in:
Sebastian Markbage 2015-09-16 01:14:04 -07:00 committed by facebook-github-bot-6
parent 6e991cf96a
commit 890c2193d0
1 changed files with 0 additions and 7 deletions

View File

@ -29,13 +29,6 @@ var TransformPropTypes = {
])
),
transformMatrix: ReactPropTypes.arrayOf(ReactPropTypes.number),
// DEPRECATED
rotation: ReactPropTypes.number,
scaleX: ReactPropTypes.number,
scaleY: ReactPropTypes.number,
translateX: ReactPropTypes.number,
translateY: ReactPropTypes.number,
};
module.exports = TransformPropTypes;