changed acces on a static funtion to public

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352743 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Said Ryan Ackley 2002-07-03 19:26:57 +00:00
parent 2a36043236
commit b911a4678e

View File

@ -678,7 +678,7 @@ public class StyleSheet implements HDFType
* *
* @return An object that should be casted to the appropriate property. * @return An object that should be casted to the appropriate property.
*/ */
static Object uncompressProperty(byte[] grpprl, Object parent, StyleSheet styleSheet) public static Object uncompressProperty(byte[] grpprl, Object parent, StyleSheet styleSheet)
{ {
return uncompressProperty(grpprl, parent, styleSheet, true); return uncompressProperty(grpprl, parent, styleSheet, true);
} }
@ -694,7 +694,7 @@ public class StyleSheet implements HDFType
* *
* @return An object that should be casted to the appropriate property. * @return An object that should be casted to the appropriate property.
*/ */
static Object uncompressProperty(byte[] grpprl, Object parent, StyleSheet styleSheet, boolean doIstd) public static Object uncompressProperty(byte[] grpprl, Object parent, StyleSheet styleSheet, boolean doIstd)
{ {
Object newProperty = null; Object newProperty = null;
int offset = 0; int offset = 0;