Skip to content

Commit 71bd3c7

Browse files
committed
formatting
1 parent f0aa29f commit 71bd3c7

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/main/java/gov/loc/repository/bagit/creator/BagCreator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ public static Bag bagInPlace(Path root, SupportedAlgorithm algorithm, boolean in
4141
bag.setRootDir(root);
4242
logger.info("Creating a bag with version: [{}] in directory: [{}]", bag.getVersion(), root);
4343

44-
4544
Path dataDir = root.resolve("data");
4645
Files.createDirectory(dataDir);
4746
DirectoryStream<Path> directoryStream = Files.newDirectoryStream(root);

src/main/java/gov/loc/repository/bagit/hash/SupportedAlgorithm.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import java.security.MessageDigest;
44

55
/**
6-
* Easy way to see which algorithms are supported and convert between bagit manifest spec and {@link MessageDigest}<br>
7-
* See {@link StandardSupportedAlgorithms} for a nice list of defaults
6+
* Easy way to convert between bagit manifest spec and {@link MessageDigest}<br>
7+
* See {@link StandardSupportedAlgorithms} for a list of defaults
88
*/
99
public interface SupportedAlgorithm {
1010
public String getMessageDigestName();

0 commit comments

Comments
 (0)