Skip to content

Commit

Permalink
chore: remove unused a $FlowFixMe comment
Browse files Browse the repository at this point in the history
  • Loading branch information
koba04 committed Feb 17, 2021
1 parent 04d1da2 commit e9cfc49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/scheduler/src/SchedulerProfiling.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const sharedProfilingBuffer = enableProfiling
?
isEnabledSharedArrayBuffer
? new SharedArrayBuffer(profilingStateSize * Int32Array.BYTES_PER_ELEMENT)
: // $FlowFixMe Flow doesn't know about ArrayBuffer
:
typeof ArrayBuffer === 'function'
? new ArrayBuffer(profilingStateSize * Int32Array.BYTES_PER_ELEMENT)
: null // Don't crash the init path on IE9
Expand Down

0 comments on commit e9cfc49

Please sign in to comment.