You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/21 18:57:07 UTC

[commons-weaver] branch master updated: Add missing '@Override' annotations.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-weaver.git


The following commit(s) were added to refs/heads/master by this push:
     new 7559b1c  Add missing '@Override' annotations.
7559b1c is described below

commit 7559b1ca7b860e2924ff4977d45c506914e933d5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 13:57:04 2020 -0500

    Add missing '@Override' annotations.
---
 processor/src/main/java/org/apache/commons/weaver/Inflater.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/processor/src/main/java/org/apache/commons/weaver/Inflater.java b/processor/src/main/java/org/apache/commons/weaver/Inflater.java
index e4ce566..05b75c5 100644
--- a/processor/src/main/java/org/apache/commons/weaver/Inflater.java
+++ b/processor/src/main/java/org/apache/commons/weaver/Inflater.java
@@ -51,6 +51,7 @@ class Inflater {
             this.type = type;
         }
 
+        @Override
         public boolean test(final Info info) {
             return type.isInstance(info);
         }