mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
Removing console logs.
This commit is contained in:
parent
fdda1e53e3
commit
2d9531a15c
3 changed files with 0 additions and 3 deletions
|
@ -579,7 +579,6 @@ class EV3 {
|
|||
* Called by the runtime when user wants to disconnect from the EV3 peripheral.
|
||||
*/
|
||||
disconnect () {
|
||||
console.log('EV3 DISCONNECT');
|
||||
this._clearSensorsAndMotors();
|
||||
window.clearInterval(this._pollingIntervalID);
|
||||
this._pollingIntervalID = null;
|
||||
|
|
|
@ -229,7 +229,6 @@ class MicroBit {
|
|||
* Disconnect from the micro:bit.
|
||||
*/
|
||||
disconnect () {
|
||||
console.log('MICROBIT DISCONNECT');
|
||||
window.clearInterval(this._timeoutID);
|
||||
if (this._ble) {
|
||||
this._ble.disconnect();
|
||||
|
|
|
@ -611,7 +611,6 @@ class WeDo2 {
|
|||
* Disconnects from the current BLE socket.
|
||||
*/
|
||||
disconnect () {
|
||||
console.log('WEDO2 DISCONNECT');
|
||||
this._ports = ['none', 'none'];
|
||||
this._motors = [null, null];
|
||||
this._sensors = {
|
||||
|
|
Loading…
Reference in a new issue