Skip to content

Commit 3fb5df3

Browse files
authored
use correct character for java spec (#4667)
Nit PR: The Java Spec was using `X`, instead of the correct `+` for declarative configuration. ``` # Legend: # '+' Implemented # '-' Not implemented # '?' Unknown # 'N/A' Not applicable to this language ``` I noticed the mistake while updating another spec, so creating this PR to fix it :)
1 parent 94e1484 commit 3fb5df3

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

spec-compliance-matrix.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -292,19 +292,19 @@ Disclaimer: Declarative configuration is currently in Development status - work
292292

293293
| Feature | Go | Java | JS | Python | Ruby | Erlang | PHP | Rust | C++ | .NET | Swift |
294294
| ------- | -- | ---- | -- | ------ | ---- | ------ | --- | ---- | --- | ---- | ----- |
295-
| `Parse` a configuration file | | x | + | | | | + | | | | |
296-
| The `Parse` operation accepts the configuration YAML file format | | x | + | | | | + | | | | |
297-
| The `Parse` operation performs environment variable substitution | | x | | | | | + | | | | |
298-
| The `Parse` operation returns configuration model | | x | + | | | | + | | | | |
299-
| The `Parse` operation resolves extension component configuration to `properties` | | x | | | | | + | | | | |
300-
| `Create` SDK components | | x | | | | | + | | | | |
301-
| The `Create` operation accepts configuration model | | x | | | | | + | | | | |
302-
| The `Create` operation returns `TracerProvider` | | x | | | | | + | | | | |
303-
| The `Create` operation returns `MeterProvider` | | x | | | | | + | | | | |
304-
| The `Create` operation returns `LoggerProvider` | | x | | | | | + | | | | |
305-
| The `Create` operation returns `Propagators` | | x | | | | | + | | | | |
306-
| The `Create` operation calls `CreatePlugin` of corresponding `ComponentProvider` when encountering extension components | | x | | | | | + | | | | |
307-
| Register a `ComponentProvider` | | x | | | | | + | | | | |
295+
| `Parse` a configuration file | | + | + | | | | + | | | | |
296+
| The `Parse` operation accepts the configuration YAML file format | | + | + | | | | + | | | | |
297+
| The `Parse` operation performs environment variable substitution | | + | | | | | + | | | | |
298+
| The `Parse` operation returns configuration model | | + | + | | | | + | | | | |
299+
| The `Parse` operation resolves extension component configuration to `properties` | | + | | | | | + | | | | |
300+
| `Create` SDK components | | + | | | | | + | | | | |
301+
| The `Create` operation accepts configuration model | | + | | | | | + | | | | |
302+
| The `Create` operation returns `TracerProvider` | | + | | | | | + | | | | |
303+
| The `Create` operation returns `MeterProvider` | | + | | | | | + | | | | |
304+
| The `Create` operation returns `LoggerProvider` | | + | | | | | + | | | | |
305+
| The `Create` operation returns `Propagators` | | + | | | | | + | | | | |
306+
| The `Create` operation calls `CreatePlugin` of corresponding `ComponentProvider` when encountering extension components | | + | | | | | + | | | | |
307+
| Register a `ComponentProvider` | | + | | | | | + | | | | |
308308

309309
## Exporters
310310

spec-compliance-matrix/java.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -502,31 +502,31 @@ sections:
502502
- name: Declarative configuration
503503
features:
504504
- name: '`Parse` a configuration file'
505-
status: x
505+
status: '+'
506506
- name: The `Parse` operation accepts the configuration YAML file format
507-
status: x
507+
status: '+'
508508
- name: The `Parse` operation performs environment variable substitution
509-
status: x
509+
status: '+'
510510
- name: The `Parse` operation returns configuration model
511-
status: x
511+
status: '+'
512512
- name: The `Parse` operation resolves extension component configuration to `properties`
513-
status: x
513+
status: '+'
514514
- name: '`Create` SDK components'
515-
status: x
515+
status: '+'
516516
- name: The `Create` operation accepts configuration model
517-
status: x
517+
status: '+'
518518
- name: The `Create` operation returns `TracerProvider`
519-
status: x
519+
status: '+'
520520
- name: The `Create` operation returns `MeterProvider`
521-
status: x
521+
status: '+'
522522
- name: The `Create` operation returns `LoggerProvider`
523-
status: x
523+
status: '+'
524524
- name: The `Create` operation returns `Propagators`
525-
status: x
525+
status: '+'
526526
- name: The `Create` operation calls `CreatePlugin` of corresponding `ComponentProvider` when encountering extension components
527-
status: x
527+
status: '+'
528528
- name: Register a `ComponentProvider`
529-
status: x
529+
status: '+'
530530
- name: Exporters
531531
features:
532532
- name: '[Exporter interface](specification/trace/sdk.md#span-exporter)'

0 commit comments

Comments
 (0)