diff --git a/src/org/jitsi/impl/neomedia/RecorderImpl.java b/src/org/jitsi/impl/neomedia/RecorderImpl.java
index 9cb69416a61ea97deef373fc889846d6f40e740b..7dcfbe7a81fa045cffa18a5eef77413fa6da7fc7 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.
      */