From 884f90d803f394dc1d0a6e2c05a4f39efdd2ba49 Mon Sep 17 00:00:00 2001 From: Vincent Lucas <chenzo@jitsi.org> Date: Mon, 10 Dec 2012 17:57:12 +0000 Subject: [PATCH] Changes sequence of audio configuration modification events in order to aggregate pop-up notification events. --- src/org/jitsi/impl/neomedia/device/AudioSystem.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/org/jitsi/impl/neomedia/device/AudioSystem.java b/src/org/jitsi/impl/neomedia/device/AudioSystem.java index fade77f7..68704483 100644 --- a/src/org/jitsi/impl/neomedia/device/AudioSystem.java +++ b/src/org/jitsi/impl/neomedia/device/AudioSystem.java @@ -254,10 +254,6 @@ protected void preInitialize() protected void postInitialize() { try - { - super.postInitialize(); - } - finally { try { @@ -278,6 +274,10 @@ protected void postInitialize() } } } + finally + { + super.postInitialize(); + } } /** -- GitLab