Cambios en los espacios en blanco
This commit is contained in:
@@ -341,15 +341,15 @@ public class InformeEstadoResultado {
|
||||
|
||||
private void addBorders() {
|
||||
PropertyTemplate pt = new PropertyTemplate();
|
||||
for(Row header: headers){
|
||||
for (Row header : headers) {
|
||||
int rowNum = header.getRowNum();
|
||||
CellRangeAddress range = new CellRangeAddress(rowNum, rowNum, 0, 1) ;
|
||||
CellRangeAddress range = new CellRangeAddress(rowNum, rowNum, 0, 1);
|
||||
pt.drawBorders(range, BorderStyle.THIN, BorderExtent.OUTSIDE);
|
||||
}
|
||||
|
||||
for(Row footer: footers){
|
||||
for (Row footer : footers) {
|
||||
int rowNum = footer.getRowNum();
|
||||
CellRangeAddress range = new CellRangeAddress(rowNum, rowNum, 0, 1) ;
|
||||
CellRangeAddress range = new CellRangeAddress(rowNum, rowNum, 0, 1);
|
||||
pt.drawBorders(range, BorderStyle.THIN, BorderExtent.OUTSIDE);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user