From 2211f050e7176faa6fc6eeffa15fbfecb9a96aff Mon Sep 17 00:00:00 2001 From: David Snider Date: Sun, 28 Feb 2021 14:23:51 -0800 Subject: [PATCH] Remove references to Rx\(Keyed)Container Summary: These are no longer necessary and are only ever implemented by Containers, so all these changes are safe Reviewed By: hgoldstein Differential Revision: D26715811 fbshipit-source-id: 74adfec12ccde879ebeae649e69b67044b88a447 --- src/c/select.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/c/select.php b/src/c/select.php index ceee2a33..c3afde2b 100644 --- a/src/c/select.php +++ b/src/c/select.php @@ -196,7 +196,6 @@ function last( return _Private\Native\last($traversable); } if ($traversable is Iterable<_>) { - /* HH_FIXME[4200] intersection of Iterable and Rx\Traversable is reactive */ /* HH_FIXME[4387] reported here as of 2020.09.21, hack v4.51.0 */ /* HH_FIXME[4390] need ctx constants */ return $traversable->lastValue(); @@ -259,7 +258,6 @@ function last_key( return _Private\Native\last_key($traversable); } if ($traversable is KeyedIterable<_, _>) { - /* HH_FIXME[4200] intersection of Iterable and Rx\Traversable is reactive */ /* HH_FIXME[4387] reported here as of 2020.09.21, hack v4.51.0 */ /* HH_FIXME[4390] need ctx constants */ return $traversable->lastKey();