This commit is contained in:
Stephan Richter
2021-01-06 01:00:49 +01:00
parent 90851e2bd6
commit 1cb887ff8a
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.srsoftware</groupId>
<artifactId>web4rail</artifactId>
<version>1.3.7</version>
<version>1.3.8</version>
<name>Web4Rail</name>
<packaging>jar</packaging>
<description>Java Model Railway Control</description>

View File

@@ -449,7 +449,7 @@ public class Plan extends BaseClass{
public Page html() throws IOException {
Page page = new Page().append("<div id=\"plan\"><div id=\"scroll\">");
for (Tile tile: BaseClass.listElements(Tile.class)) {
if (tile == null) continue;
if (tile instanceof BlockContact) continue;
page.append("\t\t"+tile.tag(null)+"\n");
}
return page