package jxl.read.biff;

import jxl.CellType;
import jxl.biff.FormattingRecords;

/* JADX INFO: loaded from: classes.dex */
public class BlankCell extends CellValue {
    public BlankCell(Record record, FormattingRecords formattingRecords, SheetImpl sheetImpl) {
        super(record, formattingRecords, sheetImpl);
    }

    @Override // jxl.read.biff.CellValue, jxl.Cell
    public String getContents() {
        return "";
    }

    @Override // jxl.read.biff.CellValue, jxl.Cell
    public CellType getType() {
        return CellType.EMPTY;
    }
}
