Reverted some changes to light classes which was not meant to be committed as part of .

This commit is contained in:
Daniel Johansson 2015-09-13 20:23:07 +01:00
parent 9ba90251d6
commit 88bf9d4580
2 changed files with 14 additions and 30 deletions
jme3-core/src/main/java/com/jme3/light

@ -122,22 +122,6 @@ public abstract class Light implements Savable, Cloneable {
setColor(color);
}
/**
* Default constructor for Light.
*/
public Light() {
}
/**
* Constructor which allows setting of the color.
*
* @param color the color to apply to this light.
*/
public Light(final ColorRGBA color) {
this.color = color;
}
/**
* Returns the color of the light.
*