Skip to content

Commit 56ee4d2

Browse files
committed
chore: remove unused argument from schedule requestHostCallback (#27133)
Noticed this argument was left in the cleanup from facebook/react#27130 It seems to me like it would benefit from being cleaned up too. DiffTrain build for [587ae49d71f218d34393291933d513d2975e22c3](facebook/react@587ae49)
1 parent b74998f commit 56ee4d2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
899cb95f52cc83ab5ca1eb1e268c909d3f0961e7
1+
587ae49d71f218d34393291933d513d2975e22c3

compiled/facebook-www/ReactDOM-profiling.classic.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17364,7 +17364,7 @@ Internals.Events = [
1736417364
var devToolsConfig$jscomp$inline_1888 = {
1736517365
findFiberByHostInstance: getClosestInstanceFromNode,
1736617366
bundleType: 0,
17367-
version: "18.3.0-www-classic-d0943a52",
17367+
version: "18.3.0-www-classic-c4055c5f",
1736817368
rendererPackageName: "react-dom"
1736917369
};
1737017370
(function (internals) {
@@ -17408,7 +17408,7 @@ var devToolsConfig$jscomp$inline_1888 = {
1740817408
scheduleRoot: null,
1740917409
setRefreshHandler: null,
1741017410
getCurrentFiber: null,
17411-
reconcilerVersion: "18.3.0-www-classic-d0943a52"
17411+
reconcilerVersion: "18.3.0-www-classic-c4055c5f"
1741217412
});
1741317413
assign(Internals, {
1741417414
ReactBrowserEventEmitter: {
@@ -17623,7 +17623,7 @@ exports.unstable_renderSubtreeIntoContainer = function (
1762317623
);
1762417624
};
1762517625
exports.unstable_runWithPriority = runWithPriority;
17626-
exports.version = "18.3.0-www-classic-d0943a52";
17626+
exports.version = "18.3.0-www-classic-c4055c5f";
1762717627

1762817628
/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
1762917629
if (

compiled/facebook-www/Scheduler-dev.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ if (typeof localSetImmediate === "function") {
822822
};
823823
}
824824

825-
function requestHostCallback(callback) {
825+
function requestHostCallback() {
826826
if (!isMessageLoopRunning) {
827827
isMessageLoopRunning = true;
828828
schedulePerformWorkUntilDeadline();

compiled/facebook-www/Scheduler-dev.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ if (typeof localSetImmediate === "function") {
822822
};
823823
}
824824

825-
function requestHostCallback(callback) {
825+
function requestHostCallback() {
826826
if (!isMessageLoopRunning) {
827827
isMessageLoopRunning = true;
828828
schedulePerformWorkUntilDeadline();

0 commit comments

Comments
 (0)