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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 0b8ee4b  Camel-tooling-model: Fixed CS
0b8ee4b is described below

commit 0b8ee4b63ec3ac40451f71b0518a501592093f96
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Thu Apr 9 09:36:23 2020 +0200

    Camel-tooling-model: Fixed CS
---
 .../src/main/java/org/apache/camel/tooling/model/SupportLevel.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/tooling/camel-tooling-model/src/main/java/org/apache/camel/tooling/model/SupportLevel.java
 
b/tooling/camel-tooling-model/src/main/java/org/apache/camel/tooling/model/SupportLevel.java
index 47c311d..8973da279 100644
--- 
a/tooling/camel-tooling-model/src/main/java/org/apache/camel/tooling/model/SupportLevel.java
+++ 
b/tooling/camel-tooling-model/src/main/java/org/apache/camel/tooling/model/SupportLevel.java
@@ -45,11 +45,11 @@ public enum SupportLevel {
      */
     Stable;
 
-    public static SupportLevel DEFAULT = Stable;
+    public static SupportLevel baseStability = Stable;
 
     public static SupportLevel safeValueOf(String level) {
         if (level == null) {
-            return DEFAULT;
+            return baseStability;
         }
         if (level.compareToIgnoreCase(Experimental.name()) == 0) {
             return Experimental;

Reply via email to