This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new 3f37963 Pacify checkstyle
3f37963 is described below
commit 3f379638fea6485990d95db0ea8b6af89c8c99ed
Author: Sebb <[email protected]>
AuthorDate: Sat Nov 2 10:20:08 2019 +0000
Pacify checkstyle
---
.../java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java
b/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java
index 5dcc618..5908faa 100644
---
a/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java
+++
b/src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/control/DnsManagerTest.java
@@ -46,7 +46,7 @@ public class DnsManagerTest {
dns.setTimeoutMs(2000);
try { // Temporary test: what do other hosts generate?
System.out.println("Testing localhost");
- java.net.InetAddress ina[];
+ java.net.InetAddress[] ina;
ina = dns.resolve("localhost");
System.out.println(java.util.Arrays.toString(ina));
} catch (Exception e) {