Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java	(revision 3431)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java	(revision 3432)
@@ -221,7 +221,7 @@
 	 * 
 	 * @param name
-	 *            the name of the parameter (case-sensitive)
+	 *            the name of the config option (case-sensitive)
 	 * @param value
-	 *            the value of this parameter. Null values will be ignored.
+	 *            the value of this config option. Null values will be ignored.
 	 */
 	public void setConfig(String name, String value) {
Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/CheckTag.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/CheckTag.java	(revision 3431)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/CheckTag.java	(revision 3432)
@@ -55,9 +55,4 @@
  */
 public class CheckTag extends TagSupport {
-
-	/*
-	 * private static final Logger logger = LoggerFactory
-	 * .getLogger(CheckTag.class);
-	 */
 
 	private static final long serialVersionUID = -6834095891675681686L;
@@ -118,5 +113,4 @@
 
 		if (command.equals(FILE_BROWSING) || command.equals(GET_RESOURCES)) {
-			// logger.warn("The usage of the FILE_BROWSING command is deprecated");
 			if (RequestCycleHandler.isEnabledForFileBrowsing(request))
 				response = lm.getGetResourcesEnabled();
@@ -126,5 +120,4 @@
 
 		if (command.equals(FOLDER_CREATION) || command.equals(CREATE_FOLDER)) {
-			// logger.warn("The usage of the FOLDER_CREATION command is deprecated");
 			if (RequestCycleHandler.isCreateFolderEnabled(request))
 				response = lm.getCreateFolderEnabled();
Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/ConfigTag.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/ConfigTag.java	(revision 3431)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/ConfigTag.java	(revision 3432)
@@ -60,5 +60,5 @@
 
 	/**
-	 * Sets the desired FCKConfig option.
+	 * Sets a configuration option.
 	 */
 	public void setDynamicAttribute(String arg0, String name, Object value)
Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/EditorTag.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/EditorTag.java	(revision 3431)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/EditorTag.java	(revision 3432)
@@ -49,5 +49,5 @@
 	private String basePath;
 
-	/** The underlying FCKeditor object */
+	/** The underlying FCKeditor instance */
 	private transient FCKeditor fckEditor;
 
@@ -108,6 +108,5 @@
 	 */
 	void setConfig(String name, String value) {
-		if (value != null)
-			fckEditor.setConfig(name, value);
+		fckEditor.setConfig(name, value);
 	}
 
