From 0de4d893abc4d02d8e1bf949edda4a9d5c547e18 Mon Sep 17 00:00:00 2001 From: SimonIT Date: Sun, 18 Feb 2024 20:58:17 +0100 Subject: [PATCH] Fix javadoc format (#7344) --- gdx/src/com/badlogic/gdx/audio/Sound.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gdx/src/com/badlogic/gdx/audio/Sound.java b/gdx/src/com/badlogic/gdx/audio/Sound.java index d0ee88dc094..7f186157bb7 100644 --- a/gdx/src/com/badlogic/gdx/audio/Sound.java +++ b/gdx/src/com/badlogic/gdx/audio/Sound.java @@ -50,8 +50,8 @@ public interface Sound extends Disposable { * @return the id of the sound instance if successful, or -1 on failure. */ public long play (float volume); - /** Plays the sound. If the sound is already playing, it will be played again, concurrently. - * Note that (with the exception of the web backend) panning only works for mono sounds, not for stereo sounds! + /** Plays the sound. If the sound is already playing, it will be played again, concurrently. Note that (with the exception of + * the web backend) panning only works for mono sounds, not for stereo sounds! * @param volume the volume in the range [0,1] * @param pitch the pitch multiplier, 1 == default, >1 == faster, <1 == slower, the value has to be between 0.5 and 2.0 * @param pan panning in the range -1 (full left) to 1 (full right). 0 is center position. @@ -69,8 +69,8 @@ public interface Sound extends Disposable { public long loop (float volume); /** Plays the sound, looping. If the sound is already playing, it will be played again, concurrently. You need to stop the - * sound via a call to {@link #stop(long)} using the returned id. - * Note that (with the exception of the web backend) panning only works for mono sounds, not for stereo sounds! + * sound via a call to {@link #stop(long)} using the returned id. Note that (with the exception of the web backend) panning + * only works for mono sounds, not for stereo sounds! * @param volume the volume in the range [0,1] * @param pitch the pitch multiplier, 1 == default, >1 == faster, <1 == slower, the value has to be between 0.5 and 2.0 * @param pan panning in the range -1 (full left) to 1 (full right). 0 is center position.