Skip to content

Commit 26880ac

Browse files
committed
Fix doc
1 parent 5552406 commit 26880ac

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

build.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
destdir="doc"
2828
packagenames="${package.packagename}"
2929
linkoffline="http://d.android.com/reference ${sdk.dir}docs/reference"
30-
stylesheetfile="${sdk.dir}docs/assets/android-developer-docs.css"
3130
additionalparam="-author -version"
3231
/>
3332
</target>

src/com/loopj/android/http/RequestParams.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public void put(String key, String value){
8989
/**
9090
* Adds a file to the request.
9191
* @param key the key name for the new param.
92-
* @param filedata the file contents to add.
92+
* @param file the file to add.
9393
*/
9494
public void put(String key, File file) throws FileNotFoundException {
9595
put(key, new FileInputStream(file), file.getName());

0 commit comments

Comments
 (0)