From 14a739c79b5723cf5dbb75a5417aa6c55ccdc25e Mon Sep 17 00:00:00 2001 From: Suneet Agrawal Date: Fri, 12 Jul 2019 15:50:32 +0530 Subject: [PATCH] added annotation to dispatch function --- .../java/com/otaliastudios/cameraview/video/VideoRecorder.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cameraview/src/main/java/com/otaliastudios/cameraview/video/VideoRecorder.java b/cameraview/src/main/java/com/otaliastudios/cameraview/video/VideoRecorder.java index 6d6c711c..79f4db38 100644 --- a/cameraview/src/main/java/com/otaliastudios/cameraview/video/VideoRecorder.java +++ b/cameraview/src/main/java/com/otaliastudios/cameraview/video/VideoRecorder.java @@ -94,6 +94,8 @@ public abstract class VideoRecorder { * Subclasses can call this to notify that the video recording has started, * this will be called when camera is prepared and started. */ + @SuppressWarnings("WeakerAccess") + @CallSuper protected void dispatchActualVideoRecordingStarted(){ if(mListener != null){ mListener.onActualVideoRecordingStarted();