Skip to content

Commit

Permalink
fix: Remove explicit public visibility annotations.
Browse files Browse the repository at this point in the history
  • Loading branch information
gonfunko committed Jan 17, 2025
1 parent 702e5b1 commit 96d85a0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class RecyclableBlockFlyoutInflater extends Blockly.BlockFlyoutInflater {
/**
* Whether or not block recycling is enabled.
*/
public recyclingEnabled = false;
recyclingEnabled = false;

/**
* Map from block type to block instance.
Expand All @@ -23,7 +23,7 @@ export class RecyclableBlockFlyoutInflater extends Blockly.BlockFlyoutInflater {
/**
* Custom function to use for checking whether or not blocks can be recycled.
*/
public recycleEligibilityChecker?: (block: Blockly.Block) => boolean;
recycleEligibilityChecker?: (block: Blockly.Block) => boolean;

/**
* Creates a new block from the given block definition.
Expand Down

0 comments on commit 96d85a0

Please sign in to comment.