This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM docker.io/linuxserver/mariadb:latest | |
ENV MYSQL_ROOT_PASSWORD=testpass | |
ENV GRADLE_VERSION 7.0 | |
ENV GRADLE_HOME /opt/gradle | |
LABEL maintainer="[email protected]" | |
RUN apt update && mkdir -p /usr/share/man/man1/ \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.util.ConcurrentModificationException: null | |
at java.util.TreeMap$PrivateEntryIterator.nextEntry(Unknown Source) ~[?:1.8.0_121] | |
at java.util.TreeMap$KeyIterator.next(Unknown Source) ~[?:1.8.0_121] | |
at net.minecraft.world.WorldServer.func_175712_a(WorldServer.java:791) ~[oo.class:?] | |
at net.minecraft.world.WorldServer.func_72920_a(WorldServer.java:768) ~[oo.class:?] | |
at net.minecraft.world.chunk.storage.AnvilChunkLoader.func_75820_a(AnvilChunkLoader.java:391) ~[aye.class:?] | |
at net.minecraft.world.chunk.storage.AnvilChunkLoader.func_75816_a(AnvilChunkLoader.java:171) [aye.class:?] | |
at net.minecraft.world.gen.ChunkProviderServer.func_73242_b(ChunkProviderServer.java:202) [on.class:?] | |
at net.minecraft.world.gen.ChunkProviderServer.func_186027_a(ChunkProviderServer.java:230) [on.class:?] | |
at net.minecraft.world.WorldServer.func_73044_a(WorldServer.java:1006) [oo.class:?] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static Set<Block> findBlocksAround(Block block) { | |
Set<Block> blocks = new HashSet<>(); | |
loopNeighbours(block, blocks); | |
return blocks; | |
} | |
private static void loopNeighbours(Block block, Set<Block> blocks) { | |
blocks.add(block); | |
for (BlockFace neighbour : BlockFace.values()) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package nl.group7.narwall.view.agenda; | |
import java.time.LocalDateTime; | |
import java.util.Calendar; | |
import java.util.Optional; | |
import javafx.geometry.Insets; | |
import javafx.geometry.Pos; | |
import javafx.scene.control.Button; | |
import javafx.scene.control.DatePicker; |