diff --git a/src/java/org/apache/poi/hssf/util/HSSFColor.java b/src/java/org/apache/poi/hssf/util/HSSFColor.java index b640b37e1..bca0047dc 100644 --- a/src/java/org/apache/poi/hssf/util/HSSFColor.java +++ b/src/java/org/apache/poi/hssf/util/HSSFColor.java @@ -53,14 +53,14 @@ public class HSSFColor implements Color { * * @return a hashtable containing all colors keyed by Integer excel-style palette indexes */ - public final static Hashtable getIndexHash() { + public final static Hashtable getIndexHash() { return createColorsByIndexMap(); } - private static Hashtable createColorsByIndexMap() { + private static Hashtable createColorsByIndexMap() { HSSFColor[] colors = getAllColors(); - Hashtable result = new Hashtable(colors.length * 3 / 2); + Hashtable result = new Hashtable(colors.length * 3 / 2); for (int i = 0; i < colors.length; i++) { HSSFColor color = colors[i]; @@ -142,14 +142,14 @@ public class HSSFColor implements Color { * * @return a hashtable containing all colors keyed by String gnumeric-like triplets */ - public final static Hashtable getTripletHash() + public final static Hashtable getTripletHash() { return createColorsByHexStringMap(); } - private static Hashtable createColorsByHexStringMap() { + private static Hashtable createColorsByHexStringMap() { HSSFColor[] colors = getAllColors(); - Hashtable result = new Hashtable(colors.length * 3 / 2); + Hashtable result = new Hashtable(colors.length * 3 / 2); for (int i = 0; i < colors.length; i++) { HSSFColor color = colors[i];