Skip to content

Commit

Permalink
Fixes #23932: Plugin license implementation is not coherent with inte…
Browse files Browse the repository at this point in the history
…rface
  • Loading branch information
VinceMacBuche committed Dec 18, 2023
1 parent aa12589 commit e9678ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ trait PluginStatus {
* Default "always enable" status
*/
object AlwaysEnabledPluginStatus extends PluginStatus {
override val current = PluginStatusInfo.EnabledNoLicense
override val isEnabled = true
override val current = PluginStatusInfo.EnabledNoLicense
override def isEnabled() = true
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ import net.liftweb.util.Helpers
import scala.xml.NodeSeq

trait PluginEnableImpl extends PluginStatus {
override val current = PluginStatusInfo.EnabledNoLicense
override val isEnabled = true
override val current = PluginStatusInfo.EnabledNoLicense
override def isEnabled() = true
}

/*
Expand Down

0 comments on commit e9678ba

Please sign in to comment.