Skip to content

Commit 96da755

Browse files
committed
codestyle fixes
1 parent 0145bd0 commit 96da755

2 files changed

Lines changed: 13 additions & 6 deletions

File tree

src/main/java/com/docusign/controller/navigator/services/NavigatorMethodsService.java

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -158,19 +158,25 @@ private static String getContentType(String filename) {
158158
}
159159

160160
switch (extension) {
161-
case ".docx":
161+
case ".docx": {
162162
return "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
163-
case ".pdf":
163+
}
164+
case ".pdf": {
164165
return "application/pdf";
165-
case ".html":
166+
}
167+
case ".html": {
166168
return "text/html";
167-
case ".txt":
169+
}
170+
case ".txt": {
168171
return "text/plain";
172+
}
169173
case ".jpg":
170-
case ".jpeg":
174+
case ".jpeg": {
171175
return "image/jpeg";
172-
default:
176+
}
177+
default: {
173178
return "application/octet-stream";
179+
}
174180
}
175181
}
176182

src/main/java/com/docusign/core/model/BulkUploadJobInfo.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
public final class BulkUploadJobInfo {
77
private final String jobId;
8+
89
private final List<String> uploadUrls;
910

1011
public BulkUploadJobInfo(String jobId, List<String> uploadUrls) {

0 commit comments

Comments
 (0)