Skip to content

Commit 97da359

Browse files
committed
Change Part constructor as package-scoped
1 parent 9781104 commit 97da359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/abstractions/src/main/java/com/microsoft/kiota/MultipartBody.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ private class Part {
176176
private final String contentType;
177177
private final String filename;
178178

179-
private Part(String name, Object value, String contentType, String filename) {
179+
Part(String name, Object value, String contentType, String filename) {
180180
this.name = name;
181181
this.value = value;
182182
this.contentType = contentType;

0 commit comments

Comments
 (0)