fixed javadoc warnings and errors

This commit is contained in:
Karl Tauber
2020-10-26 15:16:37 +01:00
parent 6f8a7471c2
commit 09c98359af
3 changed files with 9 additions and 5 deletions

View File

@@ -96,7 +96,7 @@ public class Animator
* Sets the duration of the animation in milliseconds.
*
* @throws IllegalStateException if animation is running
* @throws IllegalArgumentException if duration is <= zero
* @throws IllegalArgumentException if duration is &lt;= zero
*/
public void setDuration( int duration ) {
throwExceptionIfRunning();
@@ -118,7 +118,7 @@ public class Animator
*
* @param resolution the resolution of the animation in milliseconds
* @throws IllegalStateException if animation is running
* @throws IllegalArgumentException if resolution is <= zero
* @throws IllegalArgumentException if resolution is &lt;= zero
*/
public void setResolution( int resolution ) {
throwExceptionIfRunning();