From 96d85a0ff7dc680726d064c5976b9cf1d82574db Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Fri, 17 Jan 2025 15:44:13 -0800 Subject: [PATCH] fix: Remove explicit public visibility annotations. --- .../continuous-toolbox/src/RecyclableBlockFlyoutInflater.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/continuous-toolbox/src/RecyclableBlockFlyoutInflater.ts b/plugins/continuous-toolbox/src/RecyclableBlockFlyoutInflater.ts index 66bd36f85..58278bc40 100644 --- a/plugins/continuous-toolbox/src/RecyclableBlockFlyoutInflater.ts +++ b/plugins/continuous-toolbox/src/RecyclableBlockFlyoutInflater.ts @@ -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. @@ -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.