Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Yang committed May 15, 2023
1 parent 89f258f commit 27dbd8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ - (FlutterClippingMaskView*)getMaskViewWithFrame:(CGRect)frame {

- (void)insertViewToPool:(FlutterClippingMaskView*)maskView {
FML_DCHECK(![self.pool containsObject:maskView]);
FML_DCHECK([self.pool.count <= self.capacity]);
FML_DCHECK(self.pool.count <= self.capacity);
if (self.pool.count == self.capacity) {
return;
}
Expand Down

0 comments on commit 27dbd8c

Please sign in to comment.