MERGE from REL_2_BRANCH: Bug id 21086

incorrect comparison of RGB values in HSSFPalette
  submitted by Tobias Haubner


git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353260 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Avik Sengupta 2003-07-27 18:53:53 +00:00
parent 385be78c67
commit 22cd7c3015

View File

@ -103,7 +103,7 @@ public class HSSFPalette
for (short i = (short) PaletteRecord.FIRST_COLOR_INDEX; b != null; for (short i = (short) PaletteRecord.FIRST_COLOR_INDEX; b != null;
b = palette.getColor(++i)) b = palette.getColor(++i))
{ {
if (b[0] == red && b[1] == blue && b[2] == green) if (b[0] == red && b[1] == green && b[2] == blue)
{ {
return new CustomColor(i, b); return new CustomColor(i, b);
} }