Skip to content

Commit 04f6f3d

Browse files
committed
tidy
1 parent 064252a commit 04f6f3d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/main/java/com/github/pjfanning/xlsx/exceptions/ExcelCheckedException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ protected ExcelCheckedException(Exception e) {
2222
protected ExcelCheckedException(String msg, Exception e) {
2323
super(msg, e);
2424
}
25-
}
25+
}

src/main/java/com/github/pjfanning/xlsx/impl/StreamingWorkbookReader.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ public StreamingWorkbookReader(Builder builder) {
7474
* @throws OpenException if an error occurs while opening the file
7575
* @throws ReadException if an error occurs while reading the file
7676
* @throws ParseException if an error occurs while parsing the file
77+
* @see #initWithCheckedExceptions(InputStream)
7778
*/
7879
public void init(InputStream is) throws OpenException, ReadException, ParseException {
7980
try {
@@ -98,6 +99,7 @@ public void init(InputStream is) throws OpenException, ReadException, ParseExcep
9899
* @param is the input stream to read from
99100
* @throws IOException if an error occurs while opening the file
100101
* @throws CheckedReadException if an error occurs while reading the file
102+
* @since 4.3.0
101103
*/
102104
public void initWithCheckedExceptions(InputStream is) throws IOException, CheckedReadException {
103105
try {
@@ -121,6 +123,8 @@ public void initWithCheckedExceptions(InputStream is) throws IOException, Checke
121123
* @throws OpenException if an error occurs while opening the file
122124
* @throws ReadException if an error occurs while reading the file
123125
* @throws ParseException if an error occurs while parsing the file
126+
* @see #initWithCheckedExceptions(File)
127+
* @since 4.3.0
124128
*/
125129
public void init(File f) throws OpenException, ReadException, ParseException {
126130
try {
@@ -154,6 +158,7 @@ public void init(File f) throws OpenException, ReadException, ParseException {
154158
* @param f the file to read from
155159
* @throws IOException if an error occurs while opening the file
156160
* @throws CheckedReadException if an error occurs while reading the file
161+
* @since 4.3.0
157162
*/
158163
public void initWithCheckedExceptions(File f) throws IOException, CheckedReadException {
159164
try {

0 commit comments

Comments
 (0)