Skip to content

Commit

Permalink
Remove __PSF from systemlib and HSL sources
Browse files Browse the repository at this point in the history
Summary: `__ProvenanceSkipFrame` is dead.

Reviewed By: fredemmott

Differential Revision: D34591815

fbshipit-source-id: 946328933fb8fa7f7dda4a9dcf78a8b54700f12d
  • Loading branch information
periodic1236 authored and facebook-github-bot committed Mar 4, 2022
1 parent cb402d7 commit 6315fec
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions src/async/BasePoll.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ final protected function addMultiImpl(
$this->notifiers = AwaitAllWaitHandle::fromVec($notifiers);
}

<<__ProvenanceSkipFrame>>
private async function waitForThenNotify(
Tk $key,
Awaitable<Tv> $awaitable,
Expand All @@ -140,7 +139,6 @@ final protected function addMultiImpl(
}
}

<<__ProvenanceSkipFrame>>
final public async function next(): Awaitable<?(Tk, Tv)> {
invariant(
$this->lastAwaited !== null,
Expand Down
1 change: 0 additions & 1 deletion src/async/Condition.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ final public function fail(\Exception $exception): void {
* issued only once, asynchronous execution unrelated to $notifiers is
* allowed to trigger the notification.
*/
<<__ProvenanceSkipFrame>>
final public async function waitForNotificationAsync(
Awaitable<void> $notifiers,
): Awaitable<T> {
Expand Down
1 change: 0 additions & 1 deletion src/dict/transform.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ function group_by<Tk as arraykey, Tv>(
* Time complexity: O(n * f), where f is the complexity of `$value_func`
* Space complexity: O(n)
*/
<<__ProvenanceSkipFrame>>
function map<Tk as arraykey, Tv1, Tv2>(
KeyedTraversable<Tk, Tv1> $traversable,
(function(Tv1)[_]: Tv2) $value_func,
Expand Down
1 change: 0 additions & 1 deletion src/vec/combine.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ function concat<Tv>(
* Space complexity: O(min(m, n)), where m is the size of `$first` and n is the
* size of `$second`
*/
<<__ProvenanceSkipFrame>>
function zip<Tv, Tu>(
Traversable<Tv> $first,
Traversable<Tu> $second,
Expand Down
1 change: 0 additions & 1 deletion src/vec/transform.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ function flatten<Tv>(
* Time complexity: O(n)
* Space complexity: O(n)
*/
<<__ProvenanceSkipFrame>>
function map<Tv1, Tv2>(
Traversable<Tv1> $traversable,
(function(Tv1)[_]: Tv2) $value_func,
Expand Down

0 comments on commit 6315fec

Please sign in to comment.