You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2021/03/09 20:43:44 UTC

[ignite-3] branch ignite-14198 updated: IGNITE-14198 Suppressed unused warning

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

agura pushed a commit to branch ignite-14198
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/ignite-14198 by this push:
     new 18c7569  IGNITE-14198 Suppressed unused warning
18c7569 is described below

commit 18c7569e8af70d0cbd4dde762634fb63a79f6cbb
Author: Andrey Gura <ag...@apache.org>
AuthorDate: Tue Mar 9 23:43:20 2021 +0300

    IGNITE-14198 Suppressed unused warning
---
 .../src/main/java/org/apache/ignite/metastorage/common/Operation.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/metastorage-common/src/main/java/org/apache/ignite/metastorage/common/Operation.java b/modules/metastorage-common/src/main/java/org/apache/ignite/metastorage/common/Operation.java
index db9d724..98196a9 100644
--- a/modules/metastorage-common/src/main/java/org/apache/ignite/metastorage/common/Operation.java
+++ b/modules/metastorage-common/src/main/java/org/apache/ignite/metastorage/common/Operation.java
@@ -22,6 +22,7 @@ package org.apache.ignite.metastorage.common;
  */
 public final class Operation {
     /** Actual operation implementation. */
+    @SuppressWarnings({"FieldCanBeLocal", "unused"})
     private final InnerOp upd;
 
     /**