Skip to content

Commit

Permalink
Added private constructor to SheetNameExtractor
Browse files Browse the repository at this point in the history
  • Loading branch information
breucode committed May 11, 2020
1 parent b6684e9 commit c331a89
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/java/com/poiji/bind/mapping/SheetNameExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
/**
* Utility class to extract the sheet name.
*/
class SheetNameExtractor {
final class SheetNameExtractor {

private SheetNameExtractor() {

}

/**
* Extracts the sheet name from either the annotated value {@link ExcelSheet} from the model class or from the sheet name set
* in the Poiji Options. Poiji first looks at {@link ExcelSheet} then {@link PoijiOptions}.
Expand Down

0 comments on commit c331a89

Please sign in to comment.