You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2020/01/04 14:13:59 UTC

[camel-quarkus] branch master updated: Remove @Nullable leftovers

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c1401ad  Remove @Nullable leftovers
c1401ad is described below

commit c1401ad5a270f97c0fbf8813c65369d481ed491b
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Sat Jan 4 14:59:43 2020 +0100

    Remove @Nullable leftovers
---
 .../org/apache/camel/quarkus/core/deployment/CamelBeanBuildItem.java   | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/extensions/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelBeanBuildItem.java b/extensions/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelBeanBuildItem.java
index 0fc6615..a0728cd 100644
--- a/extensions/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelBeanBuildItem.java
+++ b/extensions/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelBeanBuildItem.java
@@ -19,8 +19,6 @@ package org.apache.camel.quarkus.core.deployment;
 import java.util.Objects;
 import java.util.Optional;
 
-import javax.annotation.Nullable;
-
 import io.quarkus.builder.item.MultiBuildItem;
 import io.quarkus.deployment.annotations.ExecutionTime;
 import io.quarkus.runtime.RuntimeValue;
@@ -70,7 +68,6 @@ public final class CamelBeanBuildItem extends MultiBuildItem implements CamelBea
         return type;
     }
 
-    @Nullable
     public Optional<RuntimeValue<?>> getValue() {
         return Optional.ofNullable(value);
     }