Skip to content

Commit

Permalink
./gradlew goJF
Browse files Browse the repository at this point in the history
  • Loading branch information
thisthat committed Jan 31, 2020
1 parent c40915c commit 852a82b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions api/src/main/java/io/opentelemetry/trace/AttributeValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ static AttributeValue create(boolean... booleanValues) {
for (boolean value : booleanValues) {
values.add(value);
}
return new AutoValue_AttributeValue_AttributeValueBooleanArray(Collections.unmodifiableList(values));
return new AutoValue_AttributeValue_AttributeValueBooleanArray(
Collections.unmodifiableList(values));
}

@Override
Expand All @@ -387,7 +388,8 @@ static AttributeValue create(long... longValues) {
for (long value : longValues) {
values.add(value);
}
return new AutoValue_AttributeValue_AttributeValueLongArray(Collections.unmodifiableList(values));
return new AutoValue_AttributeValue_AttributeValueLongArray(
Collections.unmodifiableList(values));
}

@Override
Expand All @@ -414,7 +416,8 @@ static AttributeValue create(double... doubleValues) {
for (double value : doubleValues) {
values.add(value);
}
return new AutoValue_AttributeValue_AttributeValueDoubleArray(Collections.unmodifiableList(values));
return new AutoValue_AttributeValue_AttributeValueDoubleArray(
Collections.unmodifiableList(values));
}

@Override
Expand Down

0 comments on commit 852a82b

Please sign in to comment.