mirror of https://github.com/apache/poi.git
Another jdk1.4 vs jdk1.5 tweak
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@643353 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1302dc11d9
commit
2ef12ceb0c
|
@ -17,8 +17,6 @@
|
|||
package org.apache.poi.hssf.usermodel;
|
||||
|
||||
import org.apache.poi.ss.usermodel.CreationHelper;
|
||||
import org.apache.poi.ss.usermodel.DataFormat;
|
||||
import org.apache.poi.ss.usermodel.RichTextString;
|
||||
|
||||
public class HSSFCreationHelper implements CreationHelper {
|
||||
private HSSFWorkbook workbook;
|
||||
|
@ -34,11 +32,11 @@ public class HSSFCreationHelper implements CreationHelper {
|
|||
/**
|
||||
* Creates a new HSSFRichTextString for you.
|
||||
*/
|
||||
public RichTextString createRichTextString(String text) {
|
||||
public HSSFRichTextString createRichTextString(String text) {
|
||||
return new HSSFRichTextString(text);
|
||||
}
|
||||
|
||||
public DataFormat createDataFormat() {
|
||||
public HSSFDataFormat createDataFormat() {
|
||||
return dataFormat;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue