You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2019/12/24 12:00:43 UTC

[ignite-teamcity-bot] branch master updated: Nullable annotation fix

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

dpavlov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-teamcity-bot.git


The following commit(s) were added to refs/heads/master by this push:
     new 6738916  Nullable annotation fix
6738916 is described below

commit 6738916a1fe637a398795b66b40fb8848d8f400a
Author: Dmitriy Pavlov <Dm...@epam.com>
AuthorDate: Tue Dec 24 14:59:42 2019 +0300

    Nullable annotation fix
---
 tcbot-jira/src/main/java/org/apache/ignite/jiraservice/Jira.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tcbot-jira/src/main/java/org/apache/ignite/jiraservice/Jira.java b/tcbot-jira/src/main/java/org/apache/ignite/jiraservice/Jira.java
index 968a5be..eb9256a 100644
--- a/tcbot-jira/src/main/java/org/apache/ignite/jiraservice/Jira.java
+++ b/tcbot-jira/src/main/java/org/apache/ignite/jiraservice/Jira.java
@@ -24,10 +24,10 @@ import org.apache.ignite.tcbot.common.conf.IDataSourcesConfigSupplier;
 import org.apache.ignite.tcbot.common.interceptor.AutoProfiling;
 import org.apache.ignite.tcbot.common.conf.IJiraServerConfig;
 import org.apache.ignite.tcbot.common.util.HttpUtil;
-import org.checkerframework.checker.nullness.qual.Nullable;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+import javax.annotation.Nullable;
 import javax.inject.Inject;
 import java.io.IOException;