@@ -434,14 +434,14 @@ public class ElasticsearchSinkConnectorConfig extends AbstractConfig {
434434 private static final String TOPIC_TO_EXTERNAL_RESOURCE_MAPPING_DEFAULT = "" ;
435435
436436 // Error message constants for topic-to-resource mapping validation
437- public static final String INVALID_MAPPING_FORMAT_ERROR =
437+ public static final String INVALID_MAPPING_FORMAT_ERROR =
438438 "Invalid topic-to-resource mapping format. Expected format: topic:resource" ;
439-
439+
440440 public static final String DUPLICATE_TOPIC_MAPPING_ERROR_FORMAT =
441441 "Topic '%s' is mapped to multiple resources. "
442442 + "Each topic must be mapped to exactly one resource." ;
443-
444- public static final String DUPLICATE_RESOURCE_MAPPING_ERROR_FORMAT =
443+
444+ public static final String DUPLICATE_RESOURCE_MAPPING_ERROR_FORMAT =
445445 "Resource '%s' is mapped from multiple topics. "
446446 + "Each resource must be mapped to exactly one topic." ;
447447
@@ -985,7 +985,7 @@ public Map<String, String> getTopicToExternalResourceMap() {
985985 List <String > mappings = topicToExternalResourceMapping ();
986986 Map <String , String > topicToExternalResourceMap = new HashMap <>();
987987 Set <String > seenResources = new HashSet <>();
988-
988+
989989 for (String mapping : mappings ) {
990990 String [] parts = mapping .split (":" );
991991 if (parts .length != 2 ) {
@@ -1034,7 +1034,7 @@ public boolean isBasicProxyConfigured() {
10341034 /**
10351035 * Determines if data streams are being used. Checks the external
10361036 * resource usage approach first, then falls back to legacy data stream configs.
1037- *
1037+ *
10381038 * @return true if data streams are configured, false otherwise
10391039 */
10401040 public boolean isDataStream () {
@@ -1266,7 +1266,7 @@ public ExternalResourceUsage externalResourceUsage() {
12661266
12671267 /**
12681268 * Checks if external resource usage is enabled.
1269- *
1269+ *
12701270 * @return true if external resource usage is configured, false if DISABLED
12711271 */
12721272 public boolean isExternalResourceUsageEnabled () {
0 commit comments