Fixing broken documentation links

pull/433/head
michael dudley 7 years ago committed by Cori Drew
parent 7fd8ef2b90
commit b45bb8ebdd
  1. 1
      cameraview/build.gradle
  2. 4
      cameraview/src/main/java/com/otaliastudios/cameraview/CameraListener.java

@ -131,7 +131,6 @@ bintray {
//endregion
//region javadoc and sources
// From official sample https://github.com/bintray/bintray-examples/blob/master/gradle-aar-example/build.gradle
task sourcesJar(type: Jar) {
classifier = 'sources'

@ -89,7 +89,7 @@ public abstract class CameraListener {
/**
* Notifies that user interacted with the screen and started focus with a gesture,
* and the autofocus is trying to focus around that area. This can be used to draw things on screen.
* Can also be triggered by {@link CameraView#startAutoFocus(float, float)}.
* Can also be triggered by {@link CameraView#startAutoFocus(float, float, Boolean)}.
*
* @param point coordinates with respect to CameraView.getWidth() and CameraView.getHeight()
*/
@ -103,7 +103,7 @@ public abstract class CameraListener {
* Notifies that a gesture focus event just ended, and the camera converged
* to a new focus (and possibly exposure and white balance).
* This might succeed or not.
* Can also be triggered by {@link CameraView#startAutoFocus(float, float)}.
* Can also be triggered by {@link CameraView#startAutoFocus(float, float, Boolean)}.
*
* @param successful whether camera succeeded
* @param point coordinates with respect to CameraView.getWidth() and CameraView.getHeight()

Loading…
Cancel
Save