From 7e286d5525b03629ab0e629a48ff633b7c4ecb74 Mon Sep 17 00:00:00 2001 From: pavl_g <60224159+Scrappers-glitch@users.noreply.github.com> Date: Tue, 25 Jul 2023 19:13:25 +0300 Subject: [PATCH] Application#stop(boolean): fix javadoc args issue (#2038) * Application#stop(boolean): fix javadoc args conditions issue * Application#stop(boolean): fix args javadoc --- jme3-core/src/main/java/com/jme3/app/Application.java | 2 +- jme3-core/src/main/java/com/jme3/app/LegacyApplication.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jme3-core/src/main/java/com/jme3/app/Application.java b/jme3-core/src/main/java/com/jme3/app/Application.java index 198d730efa..6b299f21da 100644 --- a/jme3-core/src/main/java/com/jme3/app/Application.java +++ b/jme3-core/src/main/java/com/jme3/app/Application.java @@ -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); diff --git a/jme3-core/src/main/java/com/jme3/app/LegacyApplication.java b/jme3-core/src/main/java/com/jme3/app/LegacyApplication.java index 626dec4bfd..bc2b2bb52c 100644 --- a/jme3-core/src/main/java/com/jme3/app/LegacyApplication.java +++ b/jme3-core/src/main/java/com/jme3/app/LegacyApplication.java @@ -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) {