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 2018/08/21 18:07:15 UTC

[ignite-teamcity-bot] branch master updated: Small cosmetic changes

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 e401327  Small cosmetic changes
e401327 is described below

commit e401327a65426b284d692d53d63643d2731af570
Author: Dmitriy Pavlov <dp...@apache.org>
AuthorDate: Tue Aug 21 21:07:13 2018 +0300

    Small cosmetic changes
---
 .../src/main/java/org/apache/ignite/ci/conf/ChainAtServer.java       | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/conf/ChainAtServer.java b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/conf/ChainAtServer.java
index 280ded4..12a5b96 100644
--- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/conf/ChainAtServer.java
+++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/conf/ChainAtServer.java
@@ -24,6 +24,7 @@ import javax.annotation.Nullable;
 /**
  *
  */
+@SuppressWarnings("PublicField")
 public class ChainAtServer {
     /** Server ID to access config files within helper. */
     @Nullable public String serverId;
@@ -68,14 +69,14 @@ public class ChainAtServer {
     /**
      * @return {@code True} If automatic build triggering enabled.
      */
-    @Nonnull public boolean isTriggerBuild() {
+    public boolean isTriggerBuild() {
         return triggerBuild == null ? false : triggerBuild;
     }
 
     /**
      * @return Quiet period in minutes between triggering builds or zero if period is not set and should be ignored.
      */
-    @Nonnull public int getTriggerBuildQuietPeriod() {
+    public int getTriggerBuildQuietPeriod() {
         return triggerBuildQuietPeriod == null ? 0 : triggerBuildQuietPeriod;
     }
 }