Empty private constructor not needed when alternative constructor is available.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352967 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-12-27 10:51:33 +00:00
parent 3b8f9aff10
commit 622e6619ba

View File

@ -54,15 +54,8 @@
package org.apache.poi.hssf.usermodel; package org.apache.poi.hssf.usermodel;
import org.apache.poi.util.POILogFactory;
import org.apache.poi.hssf.model.Sheet;
import org.apache.poi.hssf.model.Workbook; import org.apache.poi.hssf.model.Workbook;
import org.apache.poi.hssf.record.*; import org.apache.poi.hssf.record.NameRecord;
import org.apache.poi.hssf.util.Region;
import org.apache.poi.util.POILogger;
import java.util.Iterator;
import java.util.TreeMap;
import org.apache.poi.hssf.util.RangeAddress; import org.apache.poi.hssf.util.RangeAddress;
import org.apache.poi.hssf.util.SheetReferences; import org.apache.poi.hssf.util.SheetReferences;
@ -70,7 +63,6 @@ import org.apache.poi.hssf.util.SheetReferences;
* Title: High Level Represantion of Named Range <P> * Title: High Level Represantion of Named Range <P>
* REFERENCE: <P> * REFERENCE: <P>
* @author Libin Roman (Vista Portal LDT. Developer) * @author Libin Roman (Vista Portal LDT. Developer)
* @version 1.0-pre
*/ */
public class HSSFName { public class HSSFName {
@ -80,7 +72,7 @@ public class HSSFName {
/** Creates new HSSFName - called by HSSFWorkbook to create a sheet from /** Creates new HSSFName - called by HSSFWorkbook to create a sheet from
* scratch. * scratch.
* *
* @see #org.apache.poi.hssf.usermodel.HSSFWorkbook.createName() * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createName()
* @param name the Name Record * @param name the Name Record
* @param book - lowlevel Workbook object associated with the sheet. * @param book - lowlevel Workbook object associated with the sheet.
* @param book the Workbook */ * @param book the Workbook */
@ -90,14 +82,6 @@ public class HSSFName {
this.name = name; this.name = name;
} }
/**
* private default constructor prevents bogus initializationless
* construction
*/
private HSSFName() {
}
/** Get the sheets name which this named range is referenced to /** Get the sheets name which this named range is referenced to
* @return sheet name, which this named range refered to * @return sheet name, which this named range refered to
*/ */