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 e9be617 commit 84aeb96Copy full SHA for 84aeb96
vavr/src/test/java/io/vavr/AbstractValueTest.java
@@ -64,18 +64,6 @@
64
@ExtendWith(AbstractMultimapTest.TestTemplateProvider.class)
65
public abstract class AbstractValueTest {
66
67
- protected Random getRandom(int seed) {
68
- if (seed >= 0) {
69
- return new Random(seed);
70
- } else {
71
- final Random random = new Random();
72
- seed = random.nextInt();
73
- System.out.println("using seed: " + seed);
74
- random.setSeed(seed);
75
- return random;
76
- }
77
78
-
79
protected <T> IterableAssert<T> assertThat(Iterable<T> actual) {
80
return new IterableAssert<T>(actual) {
81
};
0 commit comments