]> source.dussan.org Git - poi.git/commitdiff
removed unused method
authorJosh Micich <josh@apache.org>
Wed, 26 Nov 2008 23:39:35 +0000 (23:39 +0000)
committerJosh Micich <josh@apache.org>
Wed, 26 Nov 2008 23:39:35 +0000 (23:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@721037 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java

index d5627b91cf974dc0fb2d8fafef7ea43597029ac7..f81530a602d0e94b010058aa6915d40c97cfa1a6 100644 (file)
@@ -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;
-    }
 
 
     /**