Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 27dbd8c

Browse files
author
Chris Yang
committed
fix
1 parent 89f258f commit 27dbd8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell/platform/darwin/ios/framework/Source/FlutterPlatformViews_Internal.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ - (FlutterClippingMaskView*)getMaskViewWithFrame:(CGRect)frame {
498498

499499
- (void)insertViewToPool:(FlutterClippingMaskView*)maskView {
500500
FML_DCHECK(![self.pool containsObject:maskView]);
501-
FML_DCHECK([self.pool.count <= self.capacity]);
501+
FML_DCHECK(self.pool.count <= self.capacity);
502502
if (self.pool.count == self.capacity) {
503503
return;
504504
}

0 commit comments

Comments
 (0)