Skip to content

Commit 3ea8e6a

Browse files
authored
Merge branch 'main' into chore/remove-unecessary-versions
2 parents 74f7e83 + 78657ee commit 3ea8e6a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>com.tngtech.archunit</groupId>
7676
<artifactId>archunit-junit5</artifactId>
77-
<version>1.4.0</version>
77+
<version>1.4.1</version>
7878
<scope>test</scope>
7979
</dependency>
8080

@@ -447,7 +447,7 @@
447447
<dependency>
448448
<groupId>com.puppycrawl.tools</groupId>
449449
<artifactId>checkstyle</artifactId>
450-
<version>9.3</version>
450+
<version>10.23.1</version>
451451
</dependency>
452452
</dependencies>
453453
<executions>

src/main/java/dev/openfeature/sdk/FeatureProvider.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ default List<Hook> getProviderHooks() {
3030
* can overwrite this method,
3131
* if they have special initialization needed prior being called for flag
3232
* evaluation.
33+
*
3334
* <p>
3435
* It is ok if the method is expensive as it is executed in the background. All
3536
* runtime exceptions will be
@@ -45,6 +46,7 @@ default void initialize(EvaluationContext evaluationContext) throws Exception {
4546
* flags, or the SDK is shut down.
4647
* Providers can overwrite this method, if they have special shutdown actions
4748
* needed.
49+
*
4850
* <p>
4951
* It is ok if the method is expensive as it is executed in the background. All
5052
* runtime exceptions will be

src/main/java/dev/openfeature/sdk/TransactionContextPropagator.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* for the duration of a single transaction.
66
* Examples of potential transaction specific context include: a user id, user agent, IP.
77
* Transaction context is merged with evaluation context prior to flag evaluation.
8+
*
89
* <p>
910
* The precedence of merging context can be seen in
1011
* <a href=https://openfeature.dev/specification/sections/evaluation-context#requirement-323>the specification</a>.

0 commit comments

Comments
 (0)