Commit ae28f2d4 authored by Riegel's avatar Riegel
Browse files

Rename method

parent 2948aaf1
...@@ -368,7 +368,7 @@ public abstract class AbstractTunnel extends CityObject { ...@@ -368,7 +368,7 @@ public abstract class AbstractTunnel extends CityObject {
return tunnelHollows; return tunnelHollows;
} }
public List<TunnelFurniture> getTunnelFurnitureList() { public List<TunnelFurniture> getTunnelFurniture() {
return tunnelFurnitureList; return tunnelFurnitureList;
} }
......
...@@ -401,7 +401,7 @@ public class Renderer { ...@@ -401,7 +401,7 @@ public class Renderer {
addPolygons(bs, polygons); addPolygons(bs, polygons);
} }
} }
for (TunnelFurniture tf : tunnel.getTunnelFurnitureList()) { for (TunnelFurniture tf : tunnel.getTunnelFurniture()) {
addPolygons(tf, polygons); addPolygons(tf, polygons);
for (BoundarySurface bs : tf.getBoundarySurfaceList()) { for (BoundarySurface bs : tf.getBoundarySurfaceList()) {
addPolygons(bs, polygons); addPolygons(bs, polygons);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment