diff --git a/exporters/otlp/metrics/src/main/java/io/opentelemetry/exporter/otlp/metrics/package-info.java b/exporters/otlp/metrics/src/main/java/io/opentelemetry/exporter/otlp/metrics/package-info.java
index 9182d3976d..a8cf08fd31 100644
--- a/exporters/otlp/metrics/src/main/java/io/opentelemetry/exporter/otlp/metrics/package-info.java
+++ b/exporters/otlp/metrics/src/main/java/io/opentelemetry/exporter/otlp/metrics/package-info.java
@@ -3,39 +3,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
-/**
- * OpenTelemetry exporter which sends metric data to OpenTelemetry collector via gRPC.
- *
- *
Configuration options for {@link
- * io.opentelemetry.exporter.otlp.metrics.OtlpGrpcMetricExporter} can be read from system
- * properties, environment variables, or {@link java.util.Properties} objects.
- *
- *
For system properties and {@link java.util.Properties} objects, {@link
- * io.opentelemetry.exporter.otlp.metrics.OtlpGrpcMetricExporter} will look for the following names:
- *
- *
- * - {@code otel.exporter.otlp.metric.timeout}: to set the max waiting time allowed to send each
- * metric batch.
- *
- {@code otel.exporter.otlp.metric.endpoint}: to set the endpoint to connect to.
- *
- {@code otel.exporter.otlp.metric.insecure}: whether to enable client transport security for
- * the connection.
- *
- {@code otel.exporter.otlp.metric.headers}: the headers associated with the requests.
- *
- *
- * For environment variables, {@link
- * io.opentelemetry.exporter.otlp.metrics.OtlpGrpcMetricExporter} will look for the following names:
- *
- *
- * - {@code OTEL_EXPORTER_OTLP_METRIC_TIMEOUT}: to set the max waiting time allowed to send each
- * * span batch. *
- *
- {@code OTEL_EXPORTER_OTLP_METRIC_ENDPOINT}: to set the endpoint to connect to. *
- *
- {@code OTEL_EXPORTER_OTLP_METRIC_INSECURE}: whether to enable client transport security for
- * * the connection. *
- *
- {@code OTEL_EXPORTER_OTLP_METRIC_HEADERS}: the headers associated with the requests. *
- *
- *
- * In both cases, if a property is missing, the name without "metric" is used to resolve the value.
- */
+/** OpenTelemetry exporter which sends metric data to OpenTelemetry collector via OTLP gRPC. */
@ParametersAreNonnullByDefault
package io.opentelemetry.exporter.otlp.metrics;
diff --git a/exporters/otlp/trace/src/main/java/io/opentelemetry/exporter/otlp/trace/package-info.java b/exporters/otlp/trace/src/main/java/io/opentelemetry/exporter/otlp/trace/package-info.java
index 37bb156132..4e4feceba8 100644
--- a/exporters/otlp/trace/src/main/java/io/opentelemetry/exporter/otlp/trace/package-info.java
+++ b/exporters/otlp/trace/src/main/java/io/opentelemetry/exporter/otlp/trace/package-info.java
@@ -3,39 +3,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
-/**
- * OpenTelemetry exporter which sends span data to OpenTelemetry collector via gRPC.
- *
- * Configuration options for {@link io.opentelemetry.exporter.otlp.trace.OtlpGrpcSpanExporter}
- * can be read from system properties, environment variables, or {@link java.util.Properties}
- * objects.
- *
- *
For system properties and {@link java.util.Properties} objects, {@link
- * io.opentelemetry.exporter.otlp.trace.OtlpGrpcSpanExporter} will look for the following names:
- *
- *
- * - {@code otel.exporter.otlp.span.timeout}: to set the max waiting time allowed to send each
- * span batch.
- *
- {@code otel.exporter.otlp.span.endpoint}: to set the endpoint to connect to.
- *
- {@code otel.exporter.otlp.span.insecure}: whether to enable client transport security for
- * the connection.
- *
- {@code otel.exporter.otlp.span.headers}: the headers associated with the requests.
- *
- *
- * For environment variables, {@link io.opentelemetry.exporter.otlp.trace.OtlpGrpcSpanExporter}
- * will look for the following names:
- *
- *
- * - {@code OTEL_EXPORTER_OTLP_SPAN_TIMEOUT}: to set the max waiting time allowed to send each
- * span batch.
- *
- {@code OTEL_EXPORTER_OTLP_SPAN_ENDPOINT}: to set the endpoint to connect to.
- *
- {@code OTEL_EXPORTER_OTLP_SPAN_INSECURE}: whether to enable client transport security for
- * the connection.
- *
- {@code OTEL_EXPORTER_OTLP_SPAN_HEADERS}: the headers associated with the requests.
- *
- *
- * In both cases, if a property is missing, the name without "span" is used to resolve the value.
- */
+/** OpenTelemetry exporter which sends span data to OpenTelemetry collector via OTLP gRPC. */
@ParametersAreNonnullByDefault
package io.opentelemetry.exporter.otlp.trace;