findbugs URF_UNREAD_FIELD: note that unread fields were commented out in r1748084 due to a Findbugs warnings (so the disabled code is less likely to be deleted in the future
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748098 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
64ae6dc0ff
commit
e4e4cbb71e
@ -27,11 +27,12 @@ import org.apache.poi.ss.util.CellRangeAddressList;
|
|||||||
* Helper for working with Data Validation
|
* Helper for working with Data Validation
|
||||||
*/
|
*/
|
||||||
public class HSSFDataValidationHelper implements DataValidationHelper {
|
public class HSSFDataValidationHelper implements DataValidationHelper {
|
||||||
//URF_UNREAD_FIELD
|
// Findbugs: URF_UNREAD_FIELD . Do not delete without understanding how this class works.
|
||||||
//private HSSFSheet sheet;
|
//private HSSFSheet sheet;
|
||||||
|
|
||||||
public HSSFDataValidationHelper(HSSFSheet sheet) {
|
public HSSFDataValidationHelper(HSSFSheet sheet) {
|
||||||
super();
|
super();
|
||||||
|
// Findbugs: URF_UNREAD_FIELD . Do not delete without understanding how this class works.
|
||||||
//this.sheet = sheet;
|
//this.sheet = sheet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ public class HSSFTextbox extends HSSFSimpleShape {
|
|||||||
super(spContainer, objRecord, textObjectRecord);
|
super(spContainer, objRecord, textObjectRecord);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Unused: URF_UNREAD_FIELD
|
// Findbugs: URF_UNREAD_FIELD. Do not delete without understanding how this class works.
|
||||||
//HSSFRichTextString string = new HSSFRichTextString("");
|
//HSSFRichTextString string = new HSSFRichTextString("");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -35,12 +35,13 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.STDataValidationType;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class XSSFDataValidationHelper implements DataValidationHelper {
|
public class XSSFDataValidationHelper implements DataValidationHelper {
|
||||||
//Unused: URF_UNREAD_FIELD
|
// Findbugs: URF_UNREAD_FIELD. Do not delete without understanding how this class works.
|
||||||
//private XSSFSheet xssfSheet;
|
//private XSSFSheet xssfSheet;
|
||||||
|
|
||||||
|
|
||||||
public XSSFDataValidationHelper(XSSFSheet xssfSheet) {
|
public XSSFDataValidationHelper(XSSFSheet xssfSheet) {
|
||||||
super();
|
super();
|
||||||
|
// Findbugs: URF_UNREAD_FIELD. Do not delete without understanding how this class works.
|
||||||
//this.xssfSheet = xssfSheet;
|
//this.xssfSheet = xssfSheet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,8 +43,8 @@ public final class XSSFGraphicFrame extends XSSFShape {
|
|||||||
private static CTGraphicalObjectFrame prototype = null;
|
private static CTGraphicalObjectFrame prototype = null;
|
||||||
|
|
||||||
private CTGraphicalObjectFrame graphicFrame;
|
private CTGraphicalObjectFrame graphicFrame;
|
||||||
// Unused: URF_UNREAD_FIELD
|
// FIXME: shadows protected XSSFShape.drawing
|
||||||
//private XSSFDrawing drawing;
|
private XSSFDrawing drawing;
|
||||||
private XSSFClientAnchor anchor;
|
private XSSFClientAnchor anchor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user