We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e35d757 commit 320889eCopy full SHA for 320889e
jetCheck/src/main/java/com/github/simy4/coregex/jetCheck/CoregexGenerator.java
@@ -20,7 +20,7 @@
20
import java.util.regex.Pattern;
21
import org.jetbrains.jetCheck.Generator;
22
23
-public class CoregexGenerator {
+public final class CoregexGenerator {
24
public static Generator<String> of(String regex) {
25
return of(Pattern.compile(regex));
26
}
@@ -35,4 +35,6 @@ public static Generator<String> of(Pattern pattern) {
35
generationEnvironment ->
36
coregex.generate(generationEnvironment.generate(Generator.integers())));
37
38
+
39
+ private CoregexGenerator() {}
40
0 commit comments