Browse Source

com.jme3.scene.shape.Line: protect the no-argument constructor (#1234)

Stephen Gold 5 years ago
parent
commit
bd1b6d284c
1 changed files with 1 additions and 2 deletions
  1. 1 2
      jme3-core/src/main/java/com/jme3/scene/shape/Line.java

+ 1 - 2
jme3-core/src/main/java/com/jme3/scene/shape/Line.java

@@ -55,7 +55,7 @@ public class Line extends Mesh {
     /**
     /**
      * No-argument constructor needed by SavableClassUtil.
      * No-argument constructor needed by SavableClassUtil.
      */
      */
-    public Line() { // TODO protected
+    protected Line() {
     }
     }
 
 
     public Line(Vector3f start, Vector3f end) {
     public Line(Vector3f start, Vector3f end) {
@@ -69,7 +69,6 @@ public class Line extends Mesh {
         setBuffer(Type.Position, 3, new float[]{start.x,    start.y,    start.z,
         setBuffer(Type.Position, 3, new float[]{start.x,    start.y,    start.z,
                                                 end.x,      end.y,      end.z,});
                                                 end.x,      end.y,      end.z,});
 
 
-
         setBuffer(Type.TexCoord, 2, new float[]{0, 0,
         setBuffer(Type.TexCoord, 2, new float[]{0, 0,
                                                 1, 1});
                                                 1, 1});