This file contains hidden or 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; | 
  
    
      This file contains hidden or 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 hidden or 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/ \ |