*** empty log message ***

This commit is contained in:
Caspian Rychlik-Prince 2004-04-30 08:17:25 +00:00
parent 54e06e4026
commit f277e5607d
2 changed files with 5 additions and 5 deletions

View File

@ -395,9 +395,9 @@ public final class Color implements ReadableColor, Serializable, WritableColor {
/**
* HSB to RGB conversion, pinched from java.awt.Color.
* @param hue (0..360)
* @param saturation (0..100)
* @param brightness (0..100)
* @param hue (0..1.0f)
* @param saturation (0..1.0f)
* @param brightness (0..1.0f)
*/
public void fromHSB(float hue, float saturation, float brightness) {
if (saturation == 0.0F) {
@ -446,7 +446,7 @@ public final class Color implements ReadableColor, Serializable, WritableColor {
/**
* RGB to HSB conversion, pinched from java.awt.Color.
* The HSB value is returned in dest[] if dest[] is supplied.
* Hue is 0..360, saturation and brightness are 0..100.
* Values range from 0..1
* @param dest[] Destination floats, or null
* @return dest[], or a new float[]
*/

View File

@ -50,7 +50,7 @@ final class XMLUtil {
* @return the single child element, or null
* @throws Exception if the child is present multiple times
*/
public static Element getChild(Element element, String child) throws Exception {
static Element getChild(Element element, String child) throws Exception {
NodeList nodes = element.getChildNodes();
Element ret = null;
for (int i = 0; i < nodes.getLength(); i ++) {