[automation] Make LifecycleScriptExtensionProvider and its Disposable interface public (#2565)

Signed-off-by: Jimmy Tanagra <jimmy@tanagra.id.au>
pull/2567/head
jimtng 2021-11-13 06:02:27 +10:00 committed by GitHub
parent 998ce26ef5
commit 5d5b7665b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -10,7 +10,7 @@
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.openhab.core.automation.module.script.internal.defaultscope;
package org.openhab.core.automation.module.script;
import java.util.ArrayList;
import java.util.Collection;
@ -22,7 +22,6 @@ import java.util.concurrent.ConcurrentHashMap;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
import org.openhab.core.automation.module.script.ScriptExtensionProvider;
import org.osgi.service.component.annotations.Component;
/**
@ -98,7 +97,7 @@ public class LifecycleScriptExtensionProvider implements ScriptExtensionProvider
}
@FunctionalInterface
interface Disposable {
public interface Disposable {
void dispose();
}
}