Fixed semicolon 'conceptual' disappearance

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8861 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
rem..om 2011-12-04 22:13:20 +00:00
parent 8c94853989
commit c8c4cfe7c0

View File

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