removed unused method
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@721037 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5e29862bea
commit
b780e3173a
@ -377,22 +377,6 @@ public class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet
|
||||
DVRecord dvRecord = dataValidation.createDVRecord(workbook);
|
||||
dvt.addDataValidation(dvRecord);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the DVRecords objects that are associated to this sheet
|
||||
* @return a list of DVRecord instances
|
||||
*/
|
||||
public List getDVRecords() {
|
||||
List dvRecords = new ArrayList();
|
||||
List records = sheet.getRecords();
|
||||
|
||||
for(int index=0; index<records.size(); index++) {
|
||||
if(records.get(index) instanceof DVRecord) {
|
||||
dvRecords.add(records.get(index));
|
||||
}
|
||||
}
|
||||
return dvRecords;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user