Remove not used Android Wear

This commit is contained in:
Victor Shcherb 2017-01-19 09:57:41 +01:00
parent 246f2f14a3
commit 26592ed7a2
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ public class MediaCommandPlayerImpl extends AbstractPrologCommandPlayer implemen
bld.append(s).append(' ');
}
if (ctx != null) {
sendAlertToAndroidWear(ctx, bld.toString());
// sendAlertToAndroidWear(ctx, bld.toString());
}
return;
}

View file

@ -126,7 +126,7 @@ public class TTSCommandPlayerImpl extends AbstractPrologCommandPlayer {
mTts.speak(bld.toString(), TextToSpeech.QUEUE_ADD, params);
// Audio focus will be released when onUtteranceCompleted() completed is called by the TTS engine.
} else if (ctx != null && vrt.isMute()) {
sendAlertToAndroidWear(ctx, bld.toString());
// sendAlertToAndroidWear(ctx, bld.toString());
}
}