Unverified Commit bf72b635 authored by fzyzcjy's avatar fzyzcjy Committed by GitHub

Super tiny code optimization: No need to redundantly check whether value has changed (#130050)

Removed two unnecessary `if` conditions.
parent 1fb3687b
...@@ -3312,7 +3312,7 @@ class ClipboardStatusNotifier extends ValueNotifier<ClipboardStatus> with Widget ...@@ -3312,7 +3312,7 @@ class ClipboardStatusNotifier extends ValueNotifier<ClipboardStatus> with Widget
)); ));
// In the case of an error from the Clipboard API, set the value to // In the case of an error from the Clipboard API, set the value to
// unknown so that it will try to update again later. // unknown so that it will try to update again later.
if (_disposed || value == ClipboardStatus.unknown) { if (_disposed) {
return; return;
} }
value = ClipboardStatus.unknown; value = ClipboardStatus.unknown;
...@@ -3322,7 +3322,7 @@ class ClipboardStatusNotifier extends ValueNotifier<ClipboardStatus> with Widget ...@@ -3322,7 +3322,7 @@ class ClipboardStatusNotifier extends ValueNotifier<ClipboardStatus> with Widget
? ClipboardStatus.pasteable ? ClipboardStatus.pasteable
: ClipboardStatus.notPasteable; : ClipboardStatus.notPasteable;
if (_disposed || nextStatus == value) { if (_disposed) {
return; return;
} }
value = nextStatus; value = nextStatus;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment