Skip to content

Commit

Permalink
fixed javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
Guy Davenport committed Oct 15, 2024
1 parent 8e10ed2 commit 1c076c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* Additional classes are added to the cached depending on the subclass of {@link BrAPIClass}
* For {@link BrAPIObjectType} utility checks the properties and
* tries to cache any that are the return type of these properties {@link BrAPIClass}es.
* If an {@link BrAPIArrayType} is encountered then the {@link BrAPIArrayType#getItems()} is
* If an {@link BrAPIArrayType} is encountered then the {@see BrAPIArrayType#getItems()} is
* checked recursively to be included in the cache.
* For {@link BrAPIOneOfType} it is added to the cache and any of {@link BrAPIOneOfType#getPossibleTypes()}
* For {@link BrAPIOneOfType} it is added to the cache and any of {@see BrAPIOneOfType#getPossibleTypes()}
* are checked recursively to be included in the cache.
* {@link BrAPIAllOfType} are ignored.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public XSSFWorkbookGenerator(Path outputPath) {
* Creates a XSSFWorkbookGenerator using a default {@link BrAPISchemaReader} and
* the provided {@link XSSFWorkbookGenerator}.
* @param options The options to be used in the generation.
* @param outputPath the path of the output file or directory
*/
public XSSFWorkbookGenerator(XSSFWorkbookGeneratorOptions options, Path outputPath) {
this(new BrAPISchemaReader(), options, outputPath) ;
Expand Down

0 comments on commit 1c076c3

Please sign in to comment.