File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
instrumentation/couchbase/couchbase-common/testing/src/main/java/io/opentelemetry/instrumentation/couchbase Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1313import static io .opentelemetry .semconv .incubating .DbIncubatingAttributes .DB_STATEMENT ;
1414import static io .opentelemetry .semconv .incubating .DbIncubatingAttributes .DB_SYSTEM ;
1515import static io .opentelemetry .semconv .incubating .DbIncubatingAttributes .DbSystemNameIncubatingValues .COUCHBASE ;
16+ import static java .util .Collections .emptyList ;
1617
1718import com .couchbase .client .java .bucket .BucketType ;
1819import com .couchbase .client .java .cluster .BucketSettings ;
2930import io .opentelemetry .sdk .testing .assertj .SpanDataAssert ;
3031import java .lang .reflect .Field ;
3132import java .util .ArrayList ;
32- import java .util .Collections ;
3333import java .util .List ;
3434import org .junit .jupiter .api .AfterAll ;
3535import org .junit .jupiter .api .BeforeAll ;
@@ -158,18 +158,18 @@ protected SpanDataAssert assertCouchbaseSpan(
158158 }
159159
160160 protected List <AttributeAssertion > couchbaseAttributes () {
161- return Collections . emptyList ();
161+ return emptyList ();
162162 }
163163
164164 protected List <AttributeAssertion > couchbaseQueryAttributes () {
165- return Collections . emptyList ();
165+ return emptyList ();
166166 }
167167
168168 protected List <AttributeAssertion > couchbaseClusterManagerAttributes () {
169- return Collections . emptyList ();
169+ return emptyList ();
170170 }
171171
172172 protected List <AttributeAssertion > couchbaseN1qlAttributes () {
173- return Collections . emptyList ();
173+ return emptyList ();
174174 }
175175}
You can’t perform that action at this time.
0 commit comments