mirror of
https://github.com/apache/poi.git
synced 2025-03-09 03:02:47 +00:00
HSSFRow: make instance variables final
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717049 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9e13fccd47
commit
765fd556f1
@ -45,17 +45,17 @@ public final class HSSFRow implements Row {
|
||||
/**
|
||||
* reference to low level representation
|
||||
*/
|
||||
private RowRecord row;
|
||||
private final RowRecord row;
|
||||
|
||||
/**
|
||||
* reference to containing low level Workbook
|
||||
*/
|
||||
private HSSFWorkbook book;
|
||||
private final HSSFWorkbook book;
|
||||
|
||||
/**
|
||||
* reference to containing Sheet
|
||||
*/
|
||||
private HSSFSheet sheet;
|
||||
private final HSSFSheet sheet;
|
||||
|
||||
/**
|
||||
* Creates new HSSFRow from scratch. Only HSSFSheet should do this.
|
||||
|
Loading…
x
Reference in New Issue
Block a user