Skip to content

Commit

Permalink
Improve coverage and fix sonar violation
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Chédru committed Aug 30, 2016
1 parent 3963aca commit 19539fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/dhatim/fastexcel/Font.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* <a href="https://msdn.microsoft.com/en-us/library/documentformat.openxml.spreadsheet.font(v=office.14).aspx">this
* page</a>.
*/
class Font {
final class Font {

/**
* Default font.
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/dhatim/fastexcel/Correctness.java
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public void multipleWorksheets() throws Exception {
CompletableFuture<Void> cf = CompletableFuture.runAsync(() -> {
for (int j = 0; j < numCols; ++j) {
ws.value(0, j, "Column " + j);
ws.style(0, j).bold().fillColor(Color.GRAY2).set();
ws.style(0, j).bold().fontSize(12).fillColor(Color.GRAY2).set();
for (int k = 1; k <= numRows; ++k) {
switch (j) {
case 0:
Expand Down

0 comments on commit 19539fe

Please sign in to comment.