mirror of https://github.com/apache/kafka.git
HOTFIX: fix checkstyle
This commit is contained in:
parent
a672a19e80
commit
e3dd60ef3c
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue