[voice] remove unused stt events (#2741)

Signed-off-by: Miguel Álvarez Díez <miguelwork92@gmail.com>
pull/2746/head
GiviMAD 2022-02-08 16:36:12 +01:00 committed by GitHub
parent d6f63e7500
commit 75252cf4aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 48 deletions

View File

@ -1,24 +0,0 @@
/**
* Copyright (c) 2010-2022 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.openhab.core.voice;
import org.eclipse.jdt.annotation.NonNullByDefault;
/**
* A {@link STTEvent} fired when the {@link STTService} starts hearing speech.
*
* @author Kelly Davis - Initial contribution
*/
@NonNullByDefault
public class SpeechStartEvent implements STTEvent {
}

View File

@ -1,24 +0,0 @@
/**
* Copyright (c) 2010-2022 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.openhab.core.voice;
import org.eclipse.jdt.annotation.NonNullByDefault;
/**
* A {@link STTEvent} fired when the {@link STTService} stops hearing speech.
*
* @author Kelly Davis - Initial contribution
*/
@NonNullByDefault
public class SpeechStopEvent implements STTEvent {
}