Skip to content

Commit

Permalink
refactor: remove @param usage on class properties
Browse files Browse the repository at this point in the history
  • Loading branch information
erisu committed Jan 29, 2025
1 parent c8b2c82 commit 421e120
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions framework/src/org/apache/cordova/SplashScreenPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,25 @@ public class SplashScreenPlugin extends CordovaPlugin {

// Config preference values
/**
* @param boolean autoHide to auto splash screen (default=true)
* Boolean flag to auto hide splash screen (default=true)
*/
private boolean autoHide;
/**
* @param int delayTime in milliseconds (default=-1)
* Integer value of how long to delay in milliseconds (default=-1)
*/
private int delayTime;
/**
* @param int fade to fade out splash screen (default=true)
* Boolean flag if to fade to fade out splash screen (default=true)
*/
private boolean isFadeEnabled;
/**
* @param int fadeDuration fade out duration in milliseconds (default=500)
* Integer value of the fade duration in milliseconds (default=500)
*/
private int fadeDuration;

// Internal variables
/**
* @param boolean keepOnScreen flag to determine if the splash screen remains visible.
* Boolean flag to determine if the splash screen remains visible.
*/
private boolean keepOnScreen = true;

Expand Down

0 comments on commit 421e120

Please sign in to comment.