This commit is contained in:
Kirill Vainer 2016-11-23 21:05:20 -05:00
parent a71fb286f4
commit 8c4b44941e

View File

@ -9,9 +9,6 @@ package com.jme3.scene;
public abstract class GeometryGroupNode extends Node { public abstract class GeometryGroupNode extends Node {
public static int getGeometryStartIndex(Geometry geom) { public static int getGeometryStartIndex(Geometry geom) {
if (geom.startIndex == -1) {
throw new AssertionError();
}
return geom.startIndex; return geom.startIndex;
} }