1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 11:45:51 +00:00

Update src/test/java/io/github/thebusybiscuit/slimefun4/testing/tests/utils/TestInfiniteBlockGenerators.java

This commit is contained in:
TheBusyBiscuit 2020-12-24 16:17:33 +01:00 committed by GitHub
parent e88682c13b
commit 9725d63cf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -164,5 +164,4 @@ class TestInfiniteBlockGenerators {
Stream<BlockFace> stream = Arrays.stream(faces); Stream<BlockFace> stream = Arrays.stream(faces);
return stream.flatMap(a -> Arrays.stream(faces).filter(b -> a != b).map(b -> Arguments.of(a, b))); return stream.flatMap(a -> Arrays.stream(faces).filter(b -> a != b).map(b -> Arguments.of(a, b)));
} }
} }