Skip to content

Commit

Permalink
make classes final
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitlinger committed Jul 5, 2024
1 parent 2e7d651 commit 5974335
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
* any time.
*/
public class InstrumentationConfigUtil {
public final class InstrumentationConfigUtil {
private InstrumentationConfigUtil() {}

@CanIgnoreReturnValue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
* any time.
*/
public class SpringWebfluxBuilderUtil {
public final class SpringWebfluxBuilderUtil {
private SpringWebfluxBuilderUtil() {}

private static Function<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
* any time.
*/
public class SpringMvcBuilderUtil {
public final class SpringMvcBuilderUtil {
private SpringMvcBuilderUtil() {}

private static Function<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* This class is internal and is hence not for public use. Its APIs are unstable and can change at
* any time.
*/
public class SpringMvcBuilderUtil {
public final class SpringMvcBuilderUtil {
private SpringMvcBuilderUtil() {}

private static Function<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.util.function.Consumer;
import org.assertj.core.api.AbstractLongAssert;

public class HttpSpanDataAssert {
public final class HttpSpanDataAssert {

private final SpanDataAssert span;

Expand Down

0 comments on commit 5974335

Please sign in to comment.