Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Mar 10, 2023
1 parent b900a61 commit 5637977
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
1 change: 0 additions & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ def VERSIONS = [
'io.micrometer:context-propagation:1.1.+',

'aopalliance:aopalliance:1.0',
'io.projectreactor:reactor-core:3.5.+',
'org.aspectj:aspectjweaver:1.8.+',
'org.springframework:spring-context:5.+',
'org.springframework:spring-core:5+',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
* A container class that holds information about the parameter of the annotated method
* argument.
*
* Code ported from Spring Cloud Sleuth.
*
* @author Christian Schwerdtfeger
* @since 1.2.0
*/
class AnnotatedParameter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
* Utility class that can verify whether the method is annotated with the Micrometer
* Tracing annotations.
*
* Code ported from Spring Cloud Sleuth.
*
* @author Christian Schwerdtfeger
* @since 1.1.0
*/
final class AnnotationUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@
/**
* Default implementation of the {@link NewSpanParser} that parses only the span name.
*
* Code ported from Spring Cloud Sleuth.
*
* @author Christian Schwerdtfeger
* @since 1.11.0
* @since 1.1.0
*/
public class DefaultNewSpanParser implements NewSpanParser {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@
/**
* Method Invocation processor for imperative code.
*
* Code ported from Spring Cloud Sleuth.
*
* @author Marcin Grzejszczak
* @since 1.11.0
* @since 1.1.0
*/
public class ImperativeMethodInvocationProcessor extends AbstractMethodInvocationProcessor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,9 @@
* {@link NewSpan @NewSpan} or {@link ContinueSpan @ContinueSpan}<br>
* The aspect supports programmatic customizations through constructor-injectable custom
* logic.
* </p>
* <p>
*
* @author Marcin Grzejszczak
* @since 1.11.0
* @since 1.1.0
* @see ImperativeMethodInvocationProcessor
*/
@Aspect
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@
* This information is then used to add proper tags to the span from the method arguments
* that are annotated with {@link SpanTag}.
*
* Code ported from Spring Cloud Sleuth.
*
* @author Christian Schwerdtfeger
* @since 1.11.0
* @since 1.1.0
*/
class SpanTagAnnotationHandler {

Expand Down

0 comments on commit 5637977

Please sign in to comment.