This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 141c4b9dab Silence IDE warnings
141c4b9dab is described below
commit 141c4b9dabf87c3add2363b7e9f3c24a8f6842cd
Author: Mark Thomas <[email protected]>
AuthorDate: Wed Aug 24 10:42:54 2022 +0100
Silence IDE warnings
---
test/org/apache/jasper/el/TestJasperELResolver.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test/org/apache/jasper/el/TestJasperELResolver.java
b/test/org/apache/jasper/el/TestJasperELResolver.java
index 2d0859a02c..8605e62e22 100644
--- a/test/org/apache/jasper/el/TestJasperELResolver.java
+++ b/test/org/apache/jasper/el/TestJasperELResolver.java
@@ -94,9 +94,9 @@ public class TestJasperELResolver {
public String getFoo() {
return "foo";
}
- public void setFoo(String foo) {
+ public void setFoo(@SuppressWarnings("unused") String foo) {
}
- public String getBar(boolean i) {
+ public String getBar(@SuppressWarnings("unused") boolean i) {
return "bar";
}
public String isFoobar() {
@@ -105,7 +105,7 @@ public class TestJasperELResolver {
public String isBla() {
return "bla";
}
- public void setBla(Object bla) {
+ public void setBla(@SuppressWarnings("unused") Object bla) {
}
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]