From: Said Ryan Ackley Date: Wed, 3 Jul 2002 19:26:57 +0000 (+0000) Subject: changed acces on a static funtion to public X-Git-Tag: REL_1_10~266 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5863b9e84391816b2e934925e5f994f3a9b4f403;p=poi.git 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 --- diff --git a/src/scratchpad/src/org/apache/poi/hdf/model/hdftypes/StyleSheet.java b/src/scratchpad/src/org/apache/poi/hdf/model/hdftypes/StyleSheet.java index 2f99c9478e..fb227af1b2 100644 --- a/src/scratchpad/src/org/apache/poi/hdf/model/hdftypes/StyleSheet.java +++ b/src/scratchpad/src/org/apache/poi/hdf/model/hdftypes/StyleSheet.java @@ -678,7 +678,7 @@ public class StyleSheet implements HDFType * * @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); } @@ -694,7 +694,7 @@ public class StyleSheet implements HDFType * * @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; int offset = 0;