Skip to content

Commit

Permalink
fix: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Jan 3, 2020
1 parent f147149 commit 6c43171
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/gesturehandler.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ function initPageLayout() {
// registry.attachHandlerToView(this.rootGestureHandler.getTag(), this);
}
tearDown() {
console.log(this.constructor.name, 'tearDown', this.mOrchestrator, this.mRegistry);
this.configurationHelper = null;
this.mOrchestrator = null;
this.mRegistry = null;
Expand Down Expand Up @@ -547,7 +546,6 @@ function initGestureHandlerInteractionController() {
configureInteractions<T extends com.swmansion.gesturehandler.GestureHandler<any>, U extends HandlerOptions>(handler: com.swmansion.gesturehandler.GestureHandler<T>, config: U) {
handler.setInteractionController(this);
if (config) {
// console.log('configureInteractions', handler.getTag(), config);
if (config.waitFor) {
this.mWaitForRelations[handler.getTag()] = config.waitFor;
}
Expand All @@ -559,7 +557,6 @@ function initGestureHandlerInteractionController() {

shouldWaitForHandlerFailure(handler: com.swmansion.gesturehandler.GestureHandler<any>, otherHandler: com.swmansion.gesturehandler.GestureHandler<any>) {
const waitForTags = this.mWaitForRelations[handler.getTag()];
console.log('shouldWaitForHandlerFailure', handler.getTag(), waitForTags);
if (waitForTags != null) {
for (let i = 0; i < waitForTags.length; i++) {
if (waitForTags[i] === otherHandler.getTag()) {
Expand All @@ -580,7 +577,6 @@ function initGestureHandlerInteractionController() {

shouldRecognizeSimultaneously(handler: com.swmansion.gesturehandler.GestureHandler<any>, otherHandler: com.swmansion.gesturehandler.GestureHandler<any>) {
const simultHandlerTags = this.mSimultaneousRelations[handler.getTag()];
console.log('shouldRecognizeSimultaneously', handler.getTag(), simultHandlerTags);
if (simultHandlerTags != null) {
for (let i = 0; i < simultHandlerTags.length; i++) {
if (simultHandlerTags[i] === otherHandler.getTag()) {
Expand Down

0 comments on commit 6c43171

Please sign in to comment.