Skip to content

Commit

Permalink
fix: ConfidenceValue Struct build is public (#148)
Browse files Browse the repository at this point in the history
* fix: Fix dependency version

* fix: ConfidenceValue Struct builder public
  • Loading branch information
fabriziodemaria authored Jun 20, 2024
1 parent fa7043f commit e409393
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion openfeature-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
<artifactId>openfeature-provider</artifactId>

<dependencies>
<!-- x-release-please-start-version -->
<dependency>
<groupId>com.spotify.confidence</groupId>
<artifactId>sdk-java</artifactId>
<version>0.0.16-SNAPSHOT</version>
<version>0.1.0</version>
</dependency>
<!---x-release-please-end-->
<dependency>
<groupId>dev.openfeature</groupId>
<artifactId>sdk</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ public Builder set(String key, Builder value) {
return set(key, value.build());
}

Struct build() {
public Struct build() {
return new Struct(builder.build());
}
}
Expand Down

0 comments on commit e409393

Please sign in to comment.