Skip to content

Commit

Permalink
[automation] Make LifecycleScriptExtensionProvider and its Disposable…
Browse files Browse the repository at this point in the history
… interface public (#2565)

Signed-off-by: Jimmy Tanagra <jimmy@tanagra.id.au>
  • Loading branch information
jimtng authored Nov 12, 2021
1 parent 998ce26 commit 5d5b766
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -22,7 +22,6 @@

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;

/**
Expand Down Expand Up @@ -98,7 +97,7 @@ void dispose() {
}

@FunctionalInterface
interface Disposable {
public interface Disposable {
void dispose();
}
}

0 comments on commit 5d5b766

Please sign in to comment.