Skip to content

Commit

Permalink
fixing build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
monitorjbl committed Apr 9, 2015
1 parent d67bc85 commit af78f84
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
<description>Streaming Excel reader</description>
<url>https://github.com/monitorjbl/excel-streaming-reader</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<developers>
<developer>
<id>monitorjbl</id>
Expand Down
9 changes: 6 additions & 3 deletions src/main/java/com/monitorjbl/xlsx/StreamingReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,9 @@ public static class Builder {

/**
* The number of rows to keep in memory at any given point.
* <p/>
* <p>
* Defaults to 10
* </p>
*
* @param rowCacheSize number of rows
* @return reference to current {@code Builder}
Expand All @@ -210,8 +211,9 @@ public Builder rowCacheSize(int rowCacheSize) {
/**
* The number of bytes to read into memory from the input
* resource.
* <p/>
* <p>
* Defaults to 1024
* </p>
*
* @param bufferSize buffer size in bytes
* @return reference to current {@code Builder}
Expand All @@ -226,8 +228,9 @@ public Builder bufferSize(int bufferSize) {
* for a single instance of {@code StreamingReader}. If
* more sheets need to be read, a new instance must be
* created.
* <p/>
* <p>
* Defaults to 0
* </p>
*
* @param sheetIndex index of sheet
* @return reference to current {@code Builder}
Expand Down

0 comments on commit af78f84

Please sign in to comment.