diff --git a/src/core/ReactDOMNodeCache.js b/src/core/ReactDOMNodeCache.js deleted file mode 100644 index 908c2ddbcd..0000000000 --- a/src/core/ReactDOMNodeCache.js +++ /dev/null @@ -1,26 +0,0 @@ -/** - * Copyright 2013 Facebook, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * @providesModule ReactDOMNodeCache - * @typechecks - */ - -"use strict"; - -var ReactID = require('ReactID'); - -exports.getNodeByID = ReactID.getNode; -exports.purgeID = ReactID.purgeID; -exports.purgeEntireCache = ReactID.purgeEntireCache; diff --git a/src/dom/getDOMNodeID.js b/src/dom/getDOMNodeID.js deleted file mode 100644 index dddd6fadee..0000000000 --- a/src/dom/getDOMNodeID.js +++ /dev/null @@ -1,27 +0,0 @@ -/** - * Copyright 2013 Facebook, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * @providesModule getDOMNodeID - * @typechecks - */ - -"use strict"; - -var ReactID = require('ReactID'); - -function getDOMNodeID(domNode) { - return ReactID.getID(domNode); -} -module.exports = getDOMNodeID;