Commit ae28f2d4 authored by Riegel's avatar Riegel
Browse files

Rename method

parent 2948aaf1
Showing with 2 additions and 2 deletions
+2 -2
......@@ -368,7 +368,7 @@ public abstract class AbstractTunnel extends CityObject {
return tunnelHollows;
}
public List<TunnelFurniture> getTunnelFurnitureList() {
public List<TunnelFurniture> getTunnelFurniture() {
return tunnelFurnitureList;
}
......
......@@ -401,7 +401,7 @@ public class Renderer {
addPolygons(bs, polygons);
}
}
for (TunnelFurniture tf : tunnel.getTunnelFurnitureList()) {
for (TunnelFurniture tf : tunnel.getTunnelFurniture()) {
addPolygons(tf, polygons);
for (BoundarySurface bs : tf.getBoundarySurfaceList()) {
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