bugfix
This commit is contained in:
2
pom.xml
2
pom.xml
@@ -4,7 +4,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>de.srsoftware</groupId>
|
<groupId>de.srsoftware</groupId>
|
||||||
<artifactId>web4rail</artifactId>
|
<artifactId>web4rail</artifactId>
|
||||||
<version>1.3.7</version>
|
<version>1.3.8</version>
|
||||||
<name>Web4Rail</name>
|
<name>Web4Rail</name>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<description>Java Model Railway Control</description>
|
<description>Java Model Railway Control</description>
|
||||||
|
|||||||
@@ -449,7 +449,7 @@ public class Plan extends BaseClass{
|
|||||||
public Page html() throws IOException {
|
public Page html() throws IOException {
|
||||||
Page page = new Page().append("<div id=\"plan\"><div id=\"scroll\">");
|
Page page = new Page().append("<div id=\"plan\"><div id=\"scroll\">");
|
||||||
for (Tile tile: BaseClass.listElements(Tile.class)) {
|
for (Tile tile: BaseClass.listElements(Tile.class)) {
|
||||||
if (tile == null) continue;
|
if (tile instanceof BlockContact) continue;
|
||||||
page.append("\t\t"+tile.tag(null)+"\n");
|
page.append("\t\t"+tile.tag(null)+"\n");
|
||||||
}
|
}
|
||||||
return page
|
return page
|
||||||
|
|||||||
Reference in New Issue
Block a user