From ff4468ad1b6e5b642bb45dc98c33335497abd8c0 Mon Sep 17 00:00:00 2001 From: Eric Vicenti Date: Fri, 24 Mar 2017 14:18:39 -0700 Subject: [PATCH] Re-License Lists with standard React Native License Reviewed By: sahrens Differential Revision: D4771084 fbshipit-source-id: 9878a813b7dacb6ec1215fee469b946df0752de9 --- Libraries/Experimental/WindowedListView.js | 23 +--------------- .../{CustomComponents => }/Lists/FlatList.js | 23 +--------------- .../ListView/ListView.js | 23 +--------------- .../ListView/ListViewDataSource.js | 26 ++++--------------- .../ListView/__mocks__/ListViewMock.js | 2 +- .../Lists/MetroListView.js | 23 +--------------- .../Lists/SectionList.js | 23 +--------------- .../Lists/ViewabilityHelper.js | 2 +- .../Lists/VirtualizeUtils.js | 2 +- .../Lists/VirtualizedList.js | 23 +--------------- .../Lists/VirtualizedSectionList.js | 23 +--------------- .../Lists/__flowtests__/FlatList-flowtest.js | 2 +- .../__flowtests__/SectionList-flowtest.js | 2 +- .../Lists/__tests__/FlatList-test.js | 2 +- .../Lists/__tests__/SectionList-test.js | 2 +- .../Lists/__tests__/ViewabilityHelper-test.js | 2 +- .../Lists/__tests__/VirtualizeUtils-test.js | 2 +- .../__snapshots__/FlatList-test.js.snap | 0 .../__snapshots__/SectionList-test.js.snap | 0 19 files changed, 21 insertions(+), 184 deletions(-) rename Libraries/{CustomComponents => }/Lists/FlatList.js (89%) rename Libraries/{CustomComponents => Lists}/ListView/ListView.js (94%) rename Libraries/{CustomComponents => Lists}/ListView/ListViewDataSource.js (89%) rename Libraries/{CustomComponents => Lists}/ListView/__mocks__/ListViewMock.js (97%) rename Libraries/{CustomComponents => }/Lists/MetroListView.js (78%) rename Libraries/{CustomComponents => }/Lists/SectionList.js (81%) rename Libraries/{CustomComponents => }/Lists/ViewabilityHelper.js (99%) rename Libraries/{CustomComponents => }/Lists/VirtualizeUtils.js (99%) rename Libraries/{CustomComponents => }/Lists/VirtualizedList.js (95%) rename Libraries/{CustomComponents => }/Lists/VirtualizedSectionList.js (86%) rename Libraries/{CustomComponents => }/Lists/__flowtests__/FlatList-flowtest.js (98%) rename Libraries/{CustomComponents => }/Lists/__flowtests__/SectionList-flowtest.js (98%) rename Libraries/{CustomComponents => }/Lists/__tests__/FlatList-test.js (97%) rename Libraries/{CustomComponents => }/Lists/__tests__/SectionList-test.js (97%) rename Libraries/{CustomComponents => }/Lists/__tests__/ViewabilityHelper-test.js (99%) rename Libraries/{CustomComponents => }/Lists/__tests__/VirtualizeUtils-test.js (98%) rename Libraries/{CustomComponents => }/Lists/__tests__/__snapshots__/FlatList-test.js.snap (100%) rename Libraries/{CustomComponents => }/Lists/__tests__/__snapshots__/SectionList-test.js.snap (100%) diff --git a/Libraries/Experimental/WindowedListView.js b/Libraries/Experimental/WindowedListView.js index 818801696..c2e73c68d 100644 --- a/Libraries/Experimental/WindowedListView.js +++ b/Libraries/Experimental/WindowedListView.js @@ -1,32 +1,11 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * - * Facebook, Inc. ("Facebook") owns all right, title and interest, including - * all intellectual property and other proprietary rights, in and to the React - * Native CustomComponents software (the "Software"). Subject to your - * compliance with these terms, you are hereby granted a non-exclusive, - * worldwide, royalty-free copyright license to (1) use and copy the Software; - * and (2) reproduce and distribute the Software as part of your own software - * ("Your Software"). Facebook reserves all rights not expressly granted to - * you in this license agreement. - * - * THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. - * IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR - * EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * * @providesModule WindowedListView * @flow */ diff --git a/Libraries/CustomComponents/Lists/FlatList.js b/Libraries/Lists/FlatList.js similarity index 89% rename from Libraries/CustomComponents/Lists/FlatList.js rename to Libraries/Lists/FlatList.js index 9c90549ca..70c21670c 100644 --- a/Libraries/CustomComponents/Lists/FlatList.js +++ b/Libraries/Lists/FlatList.js @@ -1,32 +1,11 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * - * Facebook, Inc. ("Facebook") owns all right, title and interest, including - * all intellectual property and other proprietary rights, in and to the React - * Native CustomComponents software (the "Software"). Subject to your - * compliance with these terms, you are hereby granted a non-exclusive, - * worldwide, royalty-free copyright license to (1) use and copy the Software; - * and (2) reproduce and distribute the Software as part of your own software - * ("Your Software"). Facebook reserves all rights not expressly granted to - * you in this license agreement. - * - * THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. - * IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR - * EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * * @providesModule FlatList * @flow */ diff --git a/Libraries/CustomComponents/ListView/ListView.js b/Libraries/Lists/ListView/ListView.js similarity index 94% rename from Libraries/CustomComponents/ListView/ListView.js rename to Libraries/Lists/ListView/ListView.js index 066691f54..afc38070c 100644 --- a/Libraries/CustomComponents/ListView/ListView.js +++ b/Libraries/Lists/ListView/ListView.js @@ -1,32 +1,11 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * - * Facebook, Inc. ("Facebook") owns all right, title and interest, including - * all intellectual property and other proprietary rights, in and to the React - * Native CustomComponents software (the "Software"). Subject to your - * compliance with these terms, you are hereby granted a non-exclusive, - * worldwide, royalty-free copyright license to (1) use and copy the Software; - * and (2) reproduce and distribute the Software as part of your own software - * ("Your Software"). Facebook reserves all rights not expressly granted to - * you in this license agreement. - * - * THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. - * IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR - * EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * * @providesModule ListView * @flow */ diff --git a/Libraries/CustomComponents/ListView/ListViewDataSource.js b/Libraries/Lists/ListView/ListViewDataSource.js similarity index 89% rename from Libraries/CustomComponents/ListView/ListViewDataSource.js rename to Libraries/Lists/ListView/ListViewDataSource.js index 54f122776..70bc43d1a 100644 --- a/Libraries/CustomComponents/ListView/ListViewDataSource.js +++ b/Libraries/Lists/ListView/ListViewDataSource.js @@ -1,26 +1,10 @@ /** - * Copyright (c) 2015, Facebook, Inc. All rights reserved. + * Copyright (c) 2015-present, Facebook, Inc. + * All rights reserved. * - * Facebook, Inc. ("Facebook") owns all right, title and interest, including - * all intellectual property and other proprietary rights, in and to the React - * Native CustomComponents software (the "Software"). Subject to your - * compliance with these terms, you are hereby granted a non-exclusive, - * worldwide, royalty-free copyright license to (1) use and copy the Software; - * and (2) reproduce and distribute the Software as part of your own software - * ("Your Software"). Facebook reserves all rights not expressly granted to - * you in this license agreement. - * - * THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. - * IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR - * EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. * * @providesModule ListViewDataSource * @flow diff --git a/Libraries/CustomComponents/ListView/__mocks__/ListViewMock.js b/Libraries/Lists/ListView/__mocks__/ListViewMock.js similarity index 97% rename from Libraries/CustomComponents/ListView/__mocks__/ListViewMock.js rename to Libraries/Lists/ListView/__mocks__/ListViewMock.js index a3e5e1245..6e86c8fe6 100644 --- a/Libraries/CustomComponents/ListView/__mocks__/ListViewMock.js +++ b/Libraries/Lists/ListView/__mocks__/ListViewMock.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/MetroListView.js b/Libraries/Lists/MetroListView.js similarity index 78% rename from Libraries/CustomComponents/Lists/MetroListView.js rename to Libraries/Lists/MetroListView.js index 73e8a9b46..150b27220 100644 --- a/Libraries/CustomComponents/Lists/MetroListView.js +++ b/Libraries/Lists/MetroListView.js @@ -1,32 +1,11 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * - * Facebook, Inc. ("Facebook") owns all right, title and interest, including - * all intellectual property and other proprietary rights, in and to the React - * Native CustomComponents software (the "Software"). Subject to your - * compliance with these terms, you are hereby granted a non-exclusive, - * worldwide, royalty-free copyright license to (1) use and copy the Software; - * and (2) reproduce and distribute the Software as part of your own software - * ("Your Software"). Facebook reserves all rights not expressly granted to - * you in this license agreement. - * - * THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. - * IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR - * EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * * @providesModule MetroListView * @flow */ diff --git a/Libraries/CustomComponents/Lists/SectionList.js b/Libraries/Lists/SectionList.js similarity index 81% rename from Libraries/CustomComponents/Lists/SectionList.js rename to Libraries/Lists/SectionList.js index 83d50cc2c..86d0f65a5 100644 --- a/Libraries/CustomComponents/Lists/SectionList.js +++ b/Libraries/Lists/SectionList.js @@ -1,32 +1,11 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * - * Facebook, Inc. ("Facebook") owns all right, title and interest, including - * all intellectual property and other proprietary rights, in and to the React - * Native CustomComponents software (the "Software"). Subject to your - * compliance with these terms, you are hereby granted a non-exclusive, - * worldwide, royalty-free copyright license to (1) use and copy the Software; - * and (2) reproduce and distribute the Software as part of your own software - * ("Your Software"). Facebook reserves all rights not expressly granted to - * you in this license agreement. - * - * THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. - * IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR - * EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * * @providesModule SectionList * @flow */ diff --git a/Libraries/CustomComponents/Lists/ViewabilityHelper.js b/Libraries/Lists/ViewabilityHelper.js similarity index 99% rename from Libraries/CustomComponents/Lists/ViewabilityHelper.js rename to Libraries/Lists/ViewabilityHelper.js index 31ce384ba..ee6f35311 100644 --- a/Libraries/CustomComponents/Lists/ViewabilityHelper.js +++ b/Libraries/Lists/ViewabilityHelper.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/VirtualizeUtils.js b/Libraries/Lists/VirtualizeUtils.js similarity index 99% rename from Libraries/CustomComponents/Lists/VirtualizeUtils.js rename to Libraries/Lists/VirtualizeUtils.js index e03fa4dd7..9342d41ba 100644 --- a/Libraries/CustomComponents/Lists/VirtualizeUtils.js +++ b/Libraries/Lists/VirtualizeUtils.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/VirtualizedList.js b/Libraries/Lists/VirtualizedList.js similarity index 95% rename from Libraries/CustomComponents/Lists/VirtualizedList.js rename to Libraries/Lists/VirtualizedList.js index 85839147c..fc64a70c8 100644 --- a/Libraries/CustomComponents/Lists/VirtualizedList.js +++ b/Libraries/Lists/VirtualizedList.js @@ -1,32 +1,11 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * - * Facebook, Inc. ("Facebook") owns all right, title and interest, including - * all intellectual property and other proprietary rights, in and to the React - * Native CustomComponents software (the "Software"). Subject to your - * compliance with these terms, you are hereby granted a non-exclusive, - * worldwide, royalty-free copyright license to (1) use and copy the Software; - * and (2) reproduce and distribute the Software as part of your own software - * ("Your Software"). Facebook reserves all rights not expressly granted to - * you in this license agreement. - * - * THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. - * IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR - * EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * * @providesModule VirtualizedList * @flow */ diff --git a/Libraries/CustomComponents/Lists/VirtualizedSectionList.js b/Libraries/Lists/VirtualizedSectionList.js similarity index 86% rename from Libraries/CustomComponents/Lists/VirtualizedSectionList.js rename to Libraries/Lists/VirtualizedSectionList.js index c3e724fee..9d6752e48 100644 --- a/Libraries/CustomComponents/Lists/VirtualizedSectionList.js +++ b/Libraries/Lists/VirtualizedSectionList.js @@ -1,32 +1,11 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * - * Facebook, Inc. ("Facebook") owns all right, title and interest, including - * all intellectual property and other proprietary rights, in and to the React - * Native CustomComponents software (the "Software"). Subject to your - * compliance with these terms, you are hereby granted a non-exclusive, - * worldwide, royalty-free copyright license to (1) use and copy the Software; - * and (2) reproduce and distribute the Software as part of your own software - * ("Your Software"). Facebook reserves all rights not expressly granted to - * you in this license agreement. - * - * THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. - * IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR - * EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * * @providesModule VirtualizedSectionList * @flow */ diff --git a/Libraries/CustomComponents/Lists/__flowtests__/FlatList-flowtest.js b/Libraries/Lists/__flowtests__/FlatList-flowtest.js similarity index 98% rename from Libraries/CustomComponents/Lists/__flowtests__/FlatList-flowtest.js rename to Libraries/Lists/__flowtests__/FlatList-flowtest.js index 13fec8472..b77b88b22 100644 --- a/Libraries/CustomComponents/Lists/__flowtests__/FlatList-flowtest.js +++ b/Libraries/Lists/__flowtests__/FlatList-flowtest.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/__flowtests__/SectionList-flowtest.js b/Libraries/Lists/__flowtests__/SectionList-flowtest.js similarity index 98% rename from Libraries/CustomComponents/Lists/__flowtests__/SectionList-flowtest.js rename to Libraries/Lists/__flowtests__/SectionList-flowtest.js index dc1941f2d..4f94e6dc2 100644 --- a/Libraries/CustomComponents/Lists/__flowtests__/SectionList-flowtest.js +++ b/Libraries/Lists/__flowtests__/SectionList-flowtest.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/__tests__/FlatList-test.js b/Libraries/Lists/__tests__/FlatList-test.js similarity index 97% rename from Libraries/CustomComponents/Lists/__tests__/FlatList-test.js rename to Libraries/Lists/__tests__/FlatList-test.js index 945e5f64e..e0d6fe56c 100644 --- a/Libraries/CustomComponents/Lists/__tests__/FlatList-test.js +++ b/Libraries/Lists/__tests__/FlatList-test.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/__tests__/SectionList-test.js b/Libraries/Lists/__tests__/SectionList-test.js similarity index 97% rename from Libraries/CustomComponents/Lists/__tests__/SectionList-test.js rename to Libraries/Lists/__tests__/SectionList-test.js index 295cd75da..0e49c1deb 100644 --- a/Libraries/CustomComponents/Lists/__tests__/SectionList-test.js +++ b/Libraries/Lists/__tests__/SectionList-test.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/__tests__/ViewabilityHelper-test.js b/Libraries/Lists/__tests__/ViewabilityHelper-test.js similarity index 99% rename from Libraries/CustomComponents/Lists/__tests__/ViewabilityHelper-test.js rename to Libraries/Lists/__tests__/ViewabilityHelper-test.js index 1d97105a7..25d98fc38 100644 --- a/Libraries/CustomComponents/Lists/__tests__/ViewabilityHelper-test.js +++ b/Libraries/Lists/__tests__/ViewabilityHelper-test.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/__tests__/VirtualizeUtils-test.js b/Libraries/Lists/__tests__/VirtualizeUtils-test.js similarity index 98% rename from Libraries/CustomComponents/Lists/__tests__/VirtualizeUtils-test.js rename to Libraries/Lists/__tests__/VirtualizeUtils-test.js index 3c0d95ef6..5dc748738 100644 --- a/Libraries/CustomComponents/Lists/__tests__/VirtualizeUtils-test.js +++ b/Libraries/Lists/__tests__/VirtualizeUtils-test.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2013-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the diff --git a/Libraries/CustomComponents/Lists/__tests__/__snapshots__/FlatList-test.js.snap b/Libraries/Lists/__tests__/__snapshots__/FlatList-test.js.snap similarity index 100% rename from Libraries/CustomComponents/Lists/__tests__/__snapshots__/FlatList-test.js.snap rename to Libraries/Lists/__tests__/__snapshots__/FlatList-test.js.snap diff --git a/Libraries/CustomComponents/Lists/__tests__/__snapshots__/SectionList-test.js.snap b/Libraries/Lists/__tests__/__snapshots__/SectionList-test.js.snap similarity index 100% rename from Libraries/CustomComponents/Lists/__tests__/__snapshots__/SectionList-test.js.snap rename to Libraries/Lists/__tests__/__snapshots__/SectionList-test.js.snap