1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-08 08:23:11 +00:00

Source formatting

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-13 11:29:56 -03:00
parent e071ced9b2
commit 15fa8d389f
17 changed files with 42 additions and 41 deletions

View File

@@ -35,9 +35,9 @@ public class RGBColor {
public byte[] toByteArray() {
return new byte[] { red, green, blue };
}
public int toInteger() {
return red + green >> 8 + blue >> 16;
return red + green >> 8 + blue >> 16;
}
public static RGBColor fromByteArray(byte[] rgb) {