Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dprzybyl committed Nov 3, 2023
1 parent c794768 commit 0e13244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public Message(String text, String type) {
}

private Message() {
// GSON library needs
// GSON library needs this
}

public String getText() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private Optional<MappingDescriptor> create(Mapper mapper, Method method) {
Type type = types[i];
Annotation[] parameterAnnotations = annotations[i];
Class<? extends ApmType> apmType = getApmType(type);
ParameterDescriptor parameterDescriptor = null;
ParameterDescriptor parameterDescriptor;
if (containsAnnotation(parameterAnnotations, Named.class)) {
Named namedAnnotation = getAnnotation(parameterAnnotations, Named.class);
parameterDescriptor = new NamedParameterDescriptor(apmType, namedAnnotation);
Expand Down

0 comments on commit 0e13244

Please sign in to comment.