diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7f959f55642..6b0889fbb5c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -110,6 +110,7 @@ It does not support all required rules, so you still have to run `spotlessApply` Javadoc, though the style of documentation is up to the author. * Try to do the least amount of change when modifying existing documentation. Don't change the style unless you have a good reason. +* We do not use `@author` tags in our javadoc. * Our javadoc is available via [javadoc.io}(https://javadoc.io/doc/io.opentelemetry/opentelemetry-api) ### AutoValue diff --git a/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/actorpropagation/ActorPropagationTest.java b/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/actorpropagation/ActorPropagationTest.java index 9e87aa10b5c..64f0595f2f3 100644 --- a/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/actorpropagation/ActorPropagationTest.java +++ b/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/actorpropagation/ActorPropagationTest.java @@ -31,8 +31,6 @@ * *

For improved readability, ignore the phaser lines as those are there to ensure deterministic * execution for the tests without sleeps. - * - * @author tylerbenson */ @SuppressWarnings("FutureReturnValueIgnored") class ActorPropagationTest { diff --git a/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/promisepropagation/PromisePropagationTest.java b/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/promisepropagation/PromisePropagationTest.java index 3137549305d..d4a8e1e1d77 100644 --- a/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/promisepropagation/PromisePropagationTest.java +++ b/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/promisepropagation/PromisePropagationTest.java @@ -31,8 +31,6 @@ * *

For improved readability, ignore the phaser lines as those are there to ensure deterministic * execution for the tests without sleeps. - * - * @author tylerbenson */ class PromisePropagationTest { @RegisterExtension diff --git a/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/suspendresumepropagation/SuspendResumePropagationTest.java b/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/suspendresumepropagation/SuspendResumePropagationTest.java index 668981665df..16221ea7bf9 100644 --- a/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/suspendresumepropagation/SuspendResumePropagationTest.java +++ b/opentracing-shim/src/test/java/io/opentelemetry/opentracingshim/testbed/suspendresumepropagation/SuspendResumePropagationTest.java @@ -20,8 +20,6 @@ /** * These tests are intended to simulate the kind of async models that are common in java async * frameworks. - * - * @author tylerbenson */ class SuspendResumePropagationTest { @RegisterExtension