Author: sebb
Date: Sat Jun 16 12:39:49 2012
New Revision: 1350915

URL: http://svn.apache.org/viewvc?rev=1350915&view=rev
Log:
Replace deprecated ctor parameter

Modified:
    
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java

Modified: 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java?rev=1350915&r1=1350914&r2=1350915&view=diff
==============================================================================
--- 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
 (original)
+++ 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
 Sat Jun 16 12:39:49 2012
@@ -69,6 +69,7 @@ import org.apache.http.client.protocol.R
 import org.apache.http.conn.params.ConnRoutePNames;
 import org.apache.http.conn.scheme.Scheme;
 import org.apache.http.conn.scheme.SchemeRegistry;
+import org.apache.http.entity.ContentType;
 import org.apache.http.entity.FileEntity;
 import org.apache.http.entity.StringEntity;
 import org.apache.http.entity.mime.FormBodyPart;
@@ -868,7 +869,7 @@ public class HTTPHC4Impl extends HTTPHCA
                     }
                 }
 
-                FileEntity fileRequestEntity = new FileEntity(new 
File(file.getPath()),(String) null);// TODO is null correct?
+                FileEntity fileRequestEntity = new FileEntity(new 
File(file.getPath()),(ContentType) null);// TODO is null correct?
                 post.setEntity(fileRequestEntity);
 
                 // We just add placeholder text for file content
@@ -1022,7 +1023,7 @@ public class HTTPHC4Impl extends HTTPHCA
             hasPutBody = true;
 
             // If getSendFileAsPostBody returned true, it's sure that file is 
not null
-            FileEntity fileRequestEntity = new FileEntity(new 
File(files[0].getPath()), (String) null); // TODO is null correct?
+            FileEntity fileRequestEntity = new FileEntity(new 
File(files[0].getPath()), (ContentType) null); // TODO is null correct?
             put.setEntity(fileRequestEntity);
 
             // We just add placeholder text for file content


Reply via email to