im getting this very cryptic error message "The type modConfiguredFeatures does not define bootstrap(Registerable<ConfiguredFeature<capture#1-of ?,capture#2-of ?>>) that is applicable here" on this line: java registryBuilder.addRegistry(RegistryKeys.CONFIGURED_FEATURE,modConfiguredFeatures::bootstrap); but there is a bootstrap method in that class it looks like this ```java
public static void bootstrap(Registerable<ConfiguredFeature<?, ?>> context) {
RuleTest deepslateReplaceables = new TagMatchRuleTest(BlockTags.DEEPSLATE_ORE_REPLACEABLES);
List<OreFeatureConfig.Target> overworldCitrineOres =
List.of(OreFeatureConfig.createTarget(deepslateReplaceables, ModBlocks.DEEPSLATE_TERRAFLUX_ORE.getDefaultState()));
register(context, TERRAFLUX_ORE_KEY, Feature.ORE, new OreFeatureConfig(overworldCitrineOres, 12));
}