File tree 2 files changed +5
-3
lines changed
src/main/java/com/assemblyai/api/core
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ publishing {
47
47
maven(MavenPublication ) {
48
48
groupId = ' com.assemblyai'
49
49
artifactId = ' assemblyai-java'
50
- version = ' 0.0.5-beta10 '
50
+ version = ' 0.0.5-beta11 '
51
51
from components. java
52
52
}
53
53
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ private ClientOptions(
29
29
"X-Fern-SDK-Name" ,
30
30
"com.assemblyai.fern:api-sdk" ,
31
31
"X-Fern-SDK-Version" ,
32
- "0.0.5-beta10 " ,
32
+ "0.0.5-beta11 " ,
33
33
"X-Fern-Language" ,
34
34
"JAVA" ));
35
35
this .headerSuppliers = headerSuppliers ;
@@ -43,7 +43,9 @@ public Environment environment() {
43
43
44
44
public Map <String , String > headers (RequestOptions requestOptions ) {
45
45
Map <String , String > values = new HashMap <>(this .headers );
46
- headerSuppliers .forEach ((key , supplier ) -> values .put (key , supplier .get ()));
46
+ headerSuppliers .forEach ((key , supplier ) -> {
47
+ values .put (key , supplier .get ());
48
+ });
47
49
if (requestOptions != null ) {
48
50
values .putAll (requestOptions .getHeaders ());
49
51
}
You can’t perform that action at this time.
0 commit comments