Fix some javadocs

captchafix
Florens Douwes 11 years ago
parent 71a797b3f9
commit a073960e81
  1. 7
      Clover/app/src/main/java/org/floens/chan/core/manager/ReplyManager.java
  2. 2
      Clover/app/src/main/java/org/floens/chan/ui/activity/ImageViewActivity.java
  3. 2
      Clover/app/src/main/java/org/floens/chan/ui/view/CustomNetworkImageView.java

@ -255,13 +255,6 @@ public class ReplyManager {
public String passId; public String passId;
} }
/**
* Send an reply off to the server.
*
* @param reply The reply object with all data needed, like captcha and the
* file.
* @param listener The listener, after server response.
*/
public void sendDelete(final SavedReply reply, boolean onlyImageDelete, final DeleteListener listener) { public void sendDelete(final SavedReply reply, boolean onlyImageDelete, final DeleteListener listener) {
Logger.i(TAG, "Sending delete request: " + reply.board + ", " + reply.no); Logger.i(TAG, "Sending delete request: " + reply.board + ", " + reply.no);

@ -55,7 +55,7 @@ public class ImageViewActivity extends Activity implements ViewPager.OnPageChang
/** /**
* Set the posts to show * Set the posts to show
* *
* @param other the posts to get image data from * @param adapter the adapter to get image data from
* @param selected the no that the user clicked on * @param selected the no that the user clicked on
*/ */
public static void setAdapter(PostAdapter adapter, int selected) { public static void setAdapter(PostAdapter adapter, int selected) {

@ -94,7 +94,7 @@ public class CustomNetworkImageView extends ImageView {
/** /**
* Animate the image fading in. * Animate the image fading in.
* *
* @param duration duration of the fade animation in milliseconds * @param time duration of the fade animation in milliseconds
*/ */
public void setFadeIn(int time) { public void setFadeIn(int time) {
mFadeTime = time; mFadeTime = time;

Loading…
Cancel
Save