diff options
Diffstat (limited to 'src/media-player-list.vala')
-rw-r--r-- | src/media-player-list.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/media-player-list.vala b/src/media-player-list.vala index 6d37b4d..6eb5fc9 100644 --- a/src/media-player-list.vala +++ b/src/media-player-list.vala @@ -56,7 +56,7 @@ public class MediaPlayerList { /** * Adds the player associated with @desktop_id. Does nothing if such a player already exists. */ - public MediaPlayer? insert (string desktop_id) { + MediaPlayer? insert (string desktop_id) { var id = desktop_id.has_suffix (".desktop") ? desktop_id : desktop_id + ".desktop"; MediaPlayer? player = this._players.lookup (id); @@ -78,7 +78,7 @@ public class MediaPlayerList { /** * Removes the player associated with @desktop_id, unless it is currently running. */ - public void remove (string desktop_id) { + void remove (string desktop_id) { MediaPlayer? player = this._players.lookup (desktop_id); if (player != null && !player.is_running) { |