Skip to content

Commit 850e6e7

Browse files
committed
fixes for compiler
1 parent 816db2a commit 850e6e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/docusign/controller/click/examples/ClickwrapHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class ClickwrapHelper {
2323
* @throws IOException if document cannot be loaded due to some reason
2424
*/
2525
public Document createDocumentFromFile(String fileName, String docName, Integer order) throws IOException {
26-
byte[] buffer = FileUtils.readFile(fileName);
26+
byte[] buffer = new FileUtils().readFile(fileName);
2727
String extension = FilenameUtils.getExtension(fileName);
2828
return createDocument(buffer, docName, extension, order);
2929
}

0 commit comments

Comments
 (0)