Eclipse Jar Export fix

Cause Eclipse hates it when there are .java files without the public class in it.





Index: src/core/com/jme3/bounding/OrientedBoundingBox.java

===================================================================

— src/core/com/jme3/bounding/OrientedBoundingBox.java (revision 7099)

+++ src/core/com/jme3/bounding/OrientedBoundingBox.java (working copy)

@@ -51,7 +51,7 @@

// * @author Joshua Slack (alterations for .9)

// * @version $Id: OrientedBoundingBox.java,v 1.35 2007/09/21 15:45:31 nca Exp $

// /

-//public class OrientedBoundingBox extends BoundingVolume {

+public class OrientedBoundingBox{ //extends BoundingVolume {

//

// private static final long serialVersionUID = 1L;

//

@@ -1519,4 +1519,4 @@

// public float getVolume() {

// return (8
extent.xextent.yextent.z);

// }

-//}

No newline at end of file

+}

No newline at end of file

Index: src/core/com/jme3/terrain/GeomapLoader.java

===================================================================

— src/core/com/jme3/terrain/GeomapLoader.java (revision 7099)

+++ src/core/com/jme3/terrain/GeomapLoader.java (working copy)

@@ -42,7 +42,7 @@

//import java.nio.IntBuffer;

//import javax.imageio.ImageIO;

//

-//public class GeomapLoader {

+public class GeomapLoader {

//

// /**

// * Loads a heightmap from the image

@@ -147,4 +147,4 @@

// return new BufferGeomap(ib, null, image.getWidth(), image.getHeight(), 65536);

// }

//

-//}

+}