From ee2a235302d7188a596e972a04285bc65797a98a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Thu, 16 Oct 2014 10:39:14 +0200 Subject: [PATCH] Change the API of AndroidVideoWindowImpl class --- java/common/org/linphone/core/LinphonePlayer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/java/common/org/linphone/core/LinphonePlayer.java b/java/common/org/linphone/core/LinphonePlayer.java index faba92d5d..79d05dbb4 100644 --- a/java/common/org/linphone/core/LinphonePlayer.java +++ b/java/common/org/linphone/core/LinphonePlayer.java @@ -14,9 +14,9 @@ public interface LinphonePlayer { * */ public enum State { - closed, /**< No file is open */ - paused, /**< A file is open and playback is not running */ - playing; /**< A file is open and playback is running */ + closed, /*< No file is open */ + paused, /*< A file is open and playback is not running */ + playing; /*< A file is open and playback is running */ public static State fromValue(int value) { if(value == 0) {