From 83e909a612445b91e0872924c77a956552fffad8 Mon Sep 17 00:00:00 2001 From: sekelsenmat Date: Fri, 10 Feb 2012 15:16:30 +0000 Subject: [PATCH] Removes some forgotten debugln git-svn-id: trunk@35294 - --- lcl/interfaces/customdrawn/customdrawnwslazdeviceapis.pas | 2 -- 1 file changed, 2 deletions(-) diff --git a/lcl/interfaces/customdrawn/customdrawnwslazdeviceapis.pas b/lcl/interfaces/customdrawn/customdrawnwslazdeviceapis.pas index a8388b261b..2c10717c4c 100644 --- a/lcl/interfaces/customdrawn/customdrawnwslazdeviceapis.pas +++ b/lcl/interfaces/customdrawn/customdrawnwslazdeviceapis.pas @@ -194,12 +194,10 @@ begin // Get the vibrator object // Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); - DebugLn('3'); lParams[0].l := javaString_VIBRATOR_SERVICE; lVibratorObject := javaEnvRef^^.CallObjectMethodA(javaEnvRef, javaActivityObject, javaMethod_getSystemService, @lParams[0]); // Now call the method from the vibrator object - DebugLn('4'); lParams[0].j := ADurationMS; javaEnvRef^^.CallVoidMethodA(javaEnvRef, lVibratorObject, javaMethod_Vibrate, @lParams[0]); end;