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

[jmeter] branch master updated: Pacify checkstyle

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 <se...@apache.org>
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) {


Re: [jmeter] branch master updated: Pacify checkstyle

Posted by Vladimir Sitnikov <si...@gmail.com>.
Does it really need to be in the master branch?

If you want to play with Travis / GitHub Actions CI, then you could use
your own GitHub fork and/or create a side branch.

Vladimir