HOTFIX: fix checkstyle

This commit is contained in:
Colin P. McCabe 2023-11-02 11:35:44 -07:00
parent a672a19e80
commit e3dd60ef3c
2 changed files with 2 additions and 4 deletions

View File

@ -67,8 +67,8 @@ public class DirectoryId {
* @return true only if the directory ID is reserved.
*/
public static boolean reserved(Uuid uuid) {
return (uuid.getMostSignificantBits() == 0 &&
uuid.getLeastSignificantBits() < 100);
return uuid.getMostSignificantBits() == 0 &&
uuid.getLeastSignificantBits() < 100;
}
/**

View File

@ -20,8 +20,6 @@ import org.junit.jupiter.api.Test;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;