Skip to content

Commit

Permalink
Application#stop(boolean): fix javadoc args issue (#2038)
Browse files Browse the repository at this point in the history
* Application#stop(boolean): fix javadoc args conditions issue

* Application#stop(boolean): fix args javadoc
  • Loading branch information
pavly-gerges authored Jul 25, 2023
1 parent 5155f56 commit 7e286d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/app/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public interface Application {
* After the application has stopped, it cannot be used anymore.
*
@param waitFor true→wait for the context to be fully destroyed,
* true→don't wait
* false→don't wait
*/
public void stop(boolean waitFor);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ public void stop() {
* After the application has stopped, it cannot be used anymore.
*
* @param waitFor true→wait for the context to be fully destroyed,
* true→don't wait
* false→don't wait
*/
@Override
public void stop(boolean waitFor) {
Expand Down

0 comments on commit 7e286d5

Please sign in to comment.