Skip to content

Commit 4e7b0b7

Browse files
committed
removed unusued printlns
1 parent daf0c61 commit 4e7b0b7

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

core/src/processing/android/PWatchFaceCanvas.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,6 @@ public void onTapCommand(
340340
@Override
341341
public void onTouchEvent(MotionEvent event) {
342342
super.onTouchEvent(event);
343-
PApplet.println("touch even:" + event.toString());
344343
if (sketch != null) sketch.surfaceTouchEvent(event);
345344
}
346345

core/src/processing/android/PWatchFaceGLES.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,6 @@ public void onTapCommand(
334334
@Override
335335
public void onTouchEvent(MotionEvent event) {
336336
super.onTouchEvent(event);
337-
PApplet.println("touch even:" + event.toString());
338337
if (sketch != null) sketch.surfaceTouchEvent(event);
339338
}
340339

core/src/processing/opengl/PSurfaceGLES.java

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -195,18 +195,9 @@ public void surfaceDestroyed(SurfaceHolder holder) {
195195
public void onWindowFocusChanged(boolean hasFocus) {
196196
super.onWindowFocusChanged(hasFocus);
197197
sketch.surfaceWindowFocusChanged(hasFocus);
198-
// super.onWindowFocusChanged(hasFocus);
199-
// focused = hasFocus;
200-
// if (focused) {
201-
//// println("got focus");
202-
// focusGained();
203-
// } else {
204-
//// println("lost focus");
205-
// focusLost();
206-
// }
207198
}
208199

209-
// Do we need these to catpure events...?
200+
// Do we need these to capture events...?
210201
@Override
211202
public boolean onTouchEvent(MotionEvent event) {
212203
boolean fullscreen = sketch.width == sketch.displayWidth &&

0 commit comments

Comments
 (0)