We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd86e6b commit 4c986deCopy full SHA for 4c986de
1 file changed
README.md
@@ -32,8 +32,7 @@ The "new" bagit interface is very intuitive, but here are some easy to follow ex
32
File folder = new File("FolderYouWantToBag");
33
StandardSupportedAlgorithms algorithm = StandardSupportedAlgorithms.MD5;
34
boolean includeHiddenFiles = false;
35
-BagCreator creator = new BagCreator();
36
-Bag bag = creator.bagInPlace(folder, algorithm, includeHiddenFiles);
+Bag bag = BagCreator.bagInPlace(folder, algorithm, includeHiddenFiles);
37
```
38
##### Read an existing bag (version 0.93 and higher)
39
```java
0 commit comments