Skip to content

Commit

Permalink
fix 2 javadoc warnings : quite javadoc process
Browse files Browse the repository at this point in the history
  • Loading branch information
pquiring committed Dec 10, 2024
1 parent e2e5fc3 commit 925c0da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions base.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<import file="versions.xml"/>

<target name="javadoc" description="generate java documentation">
<delete dir="javadoc"/>
<mkdir dir="javadoc"/>
<javadoc sourcepath="src" destdir="javadoc" additionalparam="-Xdoclint:none -quiet">
<classpath>
<fileset refid="classpath"/>
Expand Down
4 changes: 2 additions & 2 deletions src/javaforce/media/MediaDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class MediaDecoder extends MediaFormat {
/**
* Starts decoder.
*
* @parma io = MediaIO interface
* @param io = MediaIO interface
* @param new_width = change video width during decoding (-1 = no change)
* @param new_height = change video height during decoding (-1 = no change)
* @param new_chs = change audio channels during decoding (-1 = no change)
Expand All @@ -24,7 +24,7 @@ public class MediaDecoder extends MediaFormat {
/**
* Starts decoder.
*
* @parma file = file to write to.
* @param file = file to write to.
* @param format = format of file (see MediaCoder.AV_FORMAT_...) (NULL = auto detect)
* @param new_width = change video width during decoding (-1 = no change)
* @param new_height = change video height during decoding (-1 = no change)
Expand Down

0 comments on commit 925c0da

Please sign in to comment.