Skip to content

Commit 9cc335e

Browse files
committed
Fix javadoc todo
1 parent 1ff7911 commit 9cc335e

File tree

11 files changed

+33
-44
lines changed
  • instrumentation
    • apache-httpclient/apache-httpclient-4.3/library/src/main/java/io/opentelemetry/instrumentation/apachehttpclient/v4_3/internal
    • java-http-client/library/src/main/java/io/opentelemetry/instrumentation/httpclient/internal
    • jetty-httpclient
      • jetty-httpclient-12.0/library/src/main/java/io/opentelemetry/instrumentation/jetty/httpclient/v12_0/internal
      • jetty-httpclient-9.2/library/src/main/java/io/opentelemetry/instrumentation/jetty/httpclient/v9_2/internal
    • netty/netty-4.1/library/src/main/java/io/opentelemetry/instrumentation/netty/v4_1/internal
    • okhttp/okhttp-3.0/library/src/main/java/io/opentelemetry/instrumentation/okhttp/v3_0/internal
    • restlet
      • restlet-1.1/library/src/main/java/io/opentelemetry/instrumentation/restlet/v1_1/internal
      • restlet-2.0/library/src/main/java/io/opentelemetry/instrumentation/restlet/v2_0/internal
    • spring
      • spring-webmvc
        • spring-webmvc-5.3/library/src/main/java/io/opentelemetry/instrumentation/spring/webmvc/v5_3/internal
        • spring-webmvc-6.0/library/src/main/java/io/opentelemetry/instrumentation/spring/webmvc/v6_0/internal
      • spring-web/spring-web-3.1/library/src/main/java/io/opentelemetry/instrumentation/spring/web/v3_1/internal

11 files changed

+33
-44
lines changed

instrumentation/apache-httpclient/apache-httpclient-4.3/library/src/main/java/io/opentelemetry/instrumentation/apachehttpclient/v4_3/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/java-http-client/library/src/main/java/io/opentelemetry/instrumentation/httpclient/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/jetty-httpclient/jetty-httpclient-12.0/library/src/main/java/io/opentelemetry/instrumentation/jetty/httpclient/v12_0/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/jetty-httpclient/jetty-httpclient-9.2/library/src/main/java/io/opentelemetry/instrumentation/jetty/httpclient/v9_2/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/netty/netty-4.1/library/src/main/java/io/opentelemetry/instrumentation/netty/v4_1/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@
1515
import javax.annotation.Nullable;
1616

1717
/**
18-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
19-
* any time.
18+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
19+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
20+
* guarantees are made.
2021
*/
21-
// TODO (trask) update the above javadoc similar to
22-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2322
public class Experimental {
2423

2524
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/okhttp/okhttp-3.0/library/src/main/java/io/opentelemetry/instrumentation/okhttp/v3_0/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/restlet/restlet-1.1/library/src/main/java/io/opentelemetry/instrumentation/restlet/v1_1/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/restlet/restlet-2.0/library/src/main/java/io/opentelemetry/instrumentation/restlet/v2_0/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/spring/spring-web/spring-web-3.1/library/src/main/java/io/opentelemetry/instrumentation/spring/web/v3_1/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

instrumentation/spring/spring-webmvc/spring-webmvc-5.3/library/src/main/java/io/opentelemetry/instrumentation/spring/webmvc/v5_3/internal/Experimental.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
import javax.annotation.Nullable;
1515

1616
/**
17-
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
18-
* any time.
17+
* This class is internal and experimental. Its APIs are unstable and can change at any time. Its
18+
* APIs (or a version of them) may be promoted to the public stable API in the future, but no
19+
* guarantees are made.
1920
*/
20-
// TODO (trask) update the above javadoc similar to
21-
// https://github.com/open-telemetry/opentelemetry-java/pull/6886
2221
public class Experimental {
2322

2423
private static final Logger logger = Logger.getLogger(Experimental.class.getName());

0 commit comments

Comments
 (0)