Index: src/org/w3c/unicorn/util/ClientHttpRequest.java
===================================================================
--- src/org/w3c/unicorn/util/ClientHttpRequest.java	(revision 283:12946641f7fb)
+++ src/org/w3c/unicorn/util/ClientHttpRequest.java	(revision 487:a1cf327f7ccf)
@@ -258,8 +258,6 @@
 			throws IOException {
 		ClientHttpRequest.logger.trace("setParameter(String, String)");
-		if (ClientHttpRequest.logger.isDebugEnabled()) {
-			ClientHttpRequest.logger.debug("Name : " + sName + ".");
-			ClientHttpRequest.logger.debug("Value : " + sValue + ".");
-		}
+		ClientHttpRequest.logger.debug("Name : " + sName + ".");
+		ClientHttpRequest.logger.debug("Value : " + sValue + ".");
 		this.boundary();
 		this.writeName(sName);
@@ -361,11 +359,11 @@
 	 * @throws IOException
 	 */
-	public void setParameters(final Map mapOfParameter) throws IOException {
+	public void setParameters(final Map<?, ?> mapOfParameter) throws IOException {
 		if (mapOfParameter == null) {
 			return;
 		}
-		for (final Iterator aIterator = mapOfParameter.entrySet().iterator(); aIterator
+		for (final Iterator<?> aIterator = mapOfParameter.entrySet().iterator(); aIterator
 				.hasNext();) {
-			final Map.Entry entry = (Map.Entry) aIterator.next();
+			final Map.Entry<?, ?> entry = (Map.Entry<?, ?>) aIterator.next();
 			this.setParameter(entry.getKey().toString(), entry.getValue());
 		}
@@ -419,5 +417,5 @@
 	 * @see setParameters
 	 */
-	public InputStream post(final Map mapOfParameter) throws IOException {
+	public InputStream post(final Map<?, ?> mapOfParameter) throws IOException {
 		this.setParameters(mapOfParameter);
 		return this.post();
@@ -455,5 +453,5 @@
 	 */
 	public InputStream post(final Map<String, String> mapOfCookie,
-			final Map mapOfParameter) throws IOException {
+			final Map<?, ?> mapOfParameter) throws IOException {
 		this.setCookies(mapOfCookie);
 		this.setParameters(mapOfParameter);
@@ -587,5 +585,5 @@
 	 * @see setParameters
 	 */
-	public static InputStream post(final URL aURL, final Map mapOfParameter)
+	public static InputStream post(final URL aURL, final Map<?, ?> mapOfParameter)
 			throws IOException {
 		return new ClientHttpRequest(aURL).post(mapOfParameter);
@@ -621,5 +619,5 @@
 	 */
 	public static InputStream post(final URL aURL,
-			final Map<String, String> mapOfCookie, final Map mapOfParameter)
+			final Map<String, String> mapOfCookie, final Map<?, ?> mapOfParameter)
 			throws IOException {
 		return new ClientHttpRequest(aURL).post(mapOfCookie, mapOfParameter);
