Commit bb7371a5 authored by Yusuke Iwaki's avatar Yusuke Iwaki

rename method "wrap" to "trackTouchEventOnActivity"

parent b5b67f3f
......@@ -77,7 +77,7 @@ abstract class AbstractFragmentActivity extends RxAppCompatActivity {
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
try {
InstabugWrapper.wrap(event, this);
InstabugWrapper.trackTouchEventOnActivity(event, this);
} catch (IllegalStateException exception) {
RCLog.w(exception, "Instabug error (ignored)");
}
......
......@@ -10,7 +10,7 @@ public class InstabugWrapper {
// stub
}
public static void wrap(MotionEvent event, Activity activity) {
public static void trackTouchEventOnActivity(MotionEvent event, Activity activity) {
// stub
}
}
......@@ -17,7 +17,7 @@ public class InstabugWrapper {
.build();
}
public static void wrap(MotionEvent event, Activity activity) {
public static void trackTouchEventOnActivity(MotionEvent event, Activity activity) {
InstabugTrackingDelegate.notifyActivityGotTouchEvent(event, activity);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment