Skip to content

Commit fac1930

Browse files
committed
Resolve Javadoc warnings
1 parent 085a756 commit fac1930

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/main/java/com/fasterxml/jackson/core/TokenStreamFactory.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,12 @@ protected InputStream _optimizedStreamFromURL(URL url) throws IOException {
216216
* Helper methods used for constructing an {@link InputStream} for
217217
* parsers to use, when input is to be read from given {@link File}.
218218
*
219+
* @param f File to open stream for
220+
*
221+
* @return {@link InputStream} constructed
222+
*
223+
* @throws IOException If there is a problem opening the stream
224+
*
219225
* @since 2.14
220226
*/
221227
protected InputStream _fileInputStream(File f) throws IOException {
@@ -226,6 +232,12 @@ protected InputStream _fileInputStream(File f) throws IOException {
226232
* Helper methods used for constructing an {@link OutputStream} for
227233
* generator to use, when target is to be written into given {@link File}.
228234
*
235+
* @param f File to open stream for
236+
*
237+
* @return {@link OutputStream} constructed
238+
*
239+
* @throws IOException If there is a problem opening the stream
240+
*
229241
* @since 2.14
230242
*/
231243
protected OutputStream _fileOutputStream(File f) throws IOException {

src/main/java/com/fasterxml/jackson/core/io/doubleparser/package-info.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@
119119
* <dt>The Java® Language Specification, Java SE 18 Edition, Chapter 3. Lexical Structure, 3.10.2. Floating-Point Literals </dt>
120120
* <dd><a href="https://docs.oracle.com/javase/specs/jls/se18/html/jls-3.html#jls-3.10.2">docs.oracle.com</a></dd>
121121
* </dl>
122-
* </p>
123122
*
124123
* @since 2.14
125124
*/

0 commit comments

Comments
 (0)