Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Application.start javadoc #1947

Merged
merged 1 commit into from
Feb 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions jme3-core/src/main/java/com/jme3/app/Application.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2021 jMonkeyEngine
* Copyright (c) 2009-2023 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -169,13 +169,15 @@ public interface Application {

/**
* Starts the application.
* A bug occurring when using LWJGL3 prevents this method from returning until after the application is stopped.
* A bug occurring when using LWJGL3 prevents this method from
* returning until after the application is stopped on macOS.
*/
public void start();

/**
* Starts the application.
* A bug occurring when using LWJGL3 prevents this method from returning until after the application is stopped.
* A bug occurring when using LWJGL3 prevents this method from
* returning until after the application is stopped on macOS.
*
* @param waitFor true→wait for the context to be initialized,
* false→don't wait
Expand Down