You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by du...@apache.org on 2023/02/20 10:56:36 UTC

[brooklyn-server] branch master updated: Removes final from WorkflowPolicy

This is an automated email from the ASF dual-hosted git repository.

duncangrant pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git


The following commit(s) were added to refs/heads/master by this push:
     new 3411277d43 Removes final from WorkflowPolicy
     new 2d96f8039c Merge pull request #1380 from nakomis/workflow-policy-visibility
3411277d43 is described below

commit 3411277d435a192acc42f33a1684f278a66e6e5d
Author: Martin Harris <gi...@nakomis.com>
AuthorDate: Fri Feb 17 17:17:01 2023 +0000

    Removes final from WorkflowPolicy
---
 .../src/main/java/org/apache/brooklyn/core/workflow/WorkflowPolicy.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/brooklyn/core/workflow/WorkflowPolicy.java b/core/src/main/java/org/apache/brooklyn/core/workflow/WorkflowPolicy.java
index d508e9ffc6..037bd1e555 100644
--- a/core/src/main/java/org/apache/brooklyn/core/workflow/WorkflowPolicy.java
+++ b/core/src/main/java/org/apache/brooklyn/core/workflow/WorkflowPolicy.java
@@ -46,7 +46,7 @@ import java.util.function.Supplier;
  * Configurable policy which runs workflow according to schedule and/or trigger.
  */
 @Beta
-public final class WorkflowPolicy<T> extends AbstractPolicy {
+public class WorkflowPolicy<T> extends AbstractPolicy {
 
     private static final Logger LOG = LoggerFactory.getLogger(WorkflowPolicy.class);