You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2021/02/21 10:01:19 UTC

[jmeter] 04/07: Add missing Override to silence ErrorProne

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

fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit 47ecfcc9825a44775bd196b81674b6d48d6c93ae
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Sun Feb 21 10:36:27 2021 +0100

    Add missing Override to silence ErrorProne
---
 .../java/org/apache/jmeter/protocol/http/curl/StringArgumentHolder.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/StringArgumentHolder.java b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/StringArgumentHolder.java
index 3c1db0e..2a72c02 100644
--- a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/StringArgumentHolder.java
+++ b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/StringArgumentHolder.java
@@ -63,6 +63,7 @@ public class StringArgumentHolder implements ArgumentHolder {
         return this.name;
     }
 
+    @Override
     public Map<String, String> getMetadata() {
         return Collections.unmodifiableMap(metadata);
     }