From 5863b9e84391816b2e934925e5f994f3a9b4f403 Mon Sep 17 00:00:00 2001 From: Said Ryan Ackley Date: Wed, 3 Jul 2002 19:26:57 +0000 Subject: [PATCH] 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 --- .../src/org/apache/poi/hdf/model/hdftypes/StyleSheet.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5