From 33ba4397ea47b0a543c605dfabcf7bae7f7fab14 Mon Sep 17 00:00:00 2001 From: Lyubomir Marinov <lyubomir.marinov@jitsi.org> Date: Fri, 17 Jan 2014 14:56:59 +0200 Subject: [PATCH] Applies formatting. --- src/org/jitsi/impl/neomedia/RecorderImpl.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/org/jitsi/impl/neomedia/RecorderImpl.java b/src/org/jitsi/impl/neomedia/RecorderImpl.java index 9cb69416..7dcfbe7a 100644 --- a/src/org/jitsi/impl/neomedia/RecorderImpl.java +++ b/src/org/jitsi/impl/neomedia/RecorderImpl.java @@ -16,7 +16,6 @@ import org.jitsi.service.neomedia.*; import org.jitsi.service.neomedia.MediaException; import org.jitsi.util.*; -// disambiguation /** * The call recording implementation. @@ -223,7 +222,8 @@ else if (extensionBeginIndex == filename.length() - 1) try { - deviceSession.setContentDescriptor(getContentDescriptor(format)); + deviceSession.setContentDescriptor( + getContentDescriptor(format)); // set initial mute state, if mute was set before starting // the recorder @@ -327,21 +327,21 @@ public void stop() * Put the recorder in mute state. It won't record the local input. * This is used when the local call is muted and we don't won't to record * the local input. + * * @param mute the new value of the mute property */ public void setMute(boolean mute) { this.mute = mute; - if(deviceSession != null) - { + if (deviceSession != null) deviceSession.setMute(mute); - } } /** * Returns the filename we are last started or stopped recording to, * null if not started. + * * @return the filename we are last started or stopped recording to, * null if not started. */ -- GitLab