浏览代码

Fixed semicolon 'conceptual' disappearance

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8861 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
rem..om 14 年之前
父节点
当前提交
c8c4cfe7c0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      engine/src/core/com/jme3/math/Ray.java

+ 1 - 1
engine/src/core/com/jme3/math/Ray.java

@@ -80,7 +80,7 @@ public final class Ray implements Savable, Cloneable, Collidable, java.io.Serial
      * @param direction the direction the ray travels in.
      */
     public Ray(Vector3f origin, Vector3f direction) {
-        setOrigin(origin)
+        setOrigin(origin);
         setDirection(direction);
     }