Skip to content

Commit 58efc20

Browse files
committed
Fixed javadoc
1 parent 5185f9d commit 58efc20

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

library/src/main/java/com/loopj/android/http/AsyncHttpRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public AsyncHttpRequest(AbstractHttpClient client, HttpContext context, HttpUriR
5656
* This method is called once by the system when the request is about to be
5757
* processed by the system. The library makes sure that a single request
5858
* is pre-processed only once.
59-
* <p/>
59+
* <p>&nbsp;</p>
6060
* Please note: pre-processing does NOT run on the main thread, and thus
6161
* any UI activities that you must perform should be properly dispatched to
6262
* the app's UI thread.
@@ -71,7 +71,7 @@ public void onPreProcessRequest(AsyncHttpRequest request) {
7171
* This method is called once by the system when the request has been fully
7272
* sent, handled and finished. The library makes sure that a single request
7373
* is post-processed only once.
74-
* <p/>
74+
* <p>&nbsp;</p>
7575
* Please note: post-processing does NOT run on the main thread, and thus
7676
* any UI activities that you must perform should be properly dispatched to
7777
* the app's UI thread.

library/src/main/java/com/loopj/android/http/FileAsyncHttpResponseHandler.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,10 @@ public File getTargetFile() {
141141
/**
142142
* Will return File instance for file representing last URL segment in given folder.
143143
* If file already exists and renameTargetFileIfExists was set as true, will try to find file
144-
* which doesn't exist, naming template for such cases is "filename.ext" => "filename (%d).ext",
145-
* or without extension "filename" => "filename (%d)"
144+
* which doesn't exist, naming template for such cases is "filename.ext" =&gt; "filename (%d).ext",
145+
* or without extension "filename" =&gt; "filename (%d)"
146+
*
147+
* @return File in given directory constructed by last segment of request URL
146148
*/
147149
protected File getTargetFileByParsingURL() {
148150
Utils.asserts(getOriginalFile().isDirectory(), "Target file is not a directory, cannot proceed");

0 commit comments

Comments
 (0)