You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2017/02/18 20:29:26 UTC

svn commit: r1783588 - in /jmeter/trunk/src/protocol: http/org/apache/jmeter/protocol/http/control/DNSCacheManager.java jms/org/apache/jmeter/protocol/jms/sampler/PublisherSampler.java

Author: pmouawad
Date: Sat Feb 18 20:29:26 2017
New Revision: 1783588

URL: http://svn.apache.org/viewvc?rev=1783588&view=rev
Log:
Fix javadocs 

Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/DNSCacheManager.java
    jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/PublisherSampler.java

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/DNSCacheManager.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/DNSCacheManager.java?rev=1783588&r1=1783587&r2=1783588&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/DNSCacheManager.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/DNSCacheManager.java Sat Feb 18 20:29:26 2017
@@ -230,7 +230,7 @@ public class DNSCacheManager extends Con
 
     /**
      * Sends DNS request via system or custom DNS resolver
-     * @param host
+     * @param host Host
      * @return array of {@link InetAddress} or null if lookup did not return result
      */
     private InetAddress[] requestLookup(String host) throws UnknownHostException {
@@ -317,7 +317,7 @@ public class DNSCacheManager extends Con
 
     /**
      * Add DNS Server
-     * @param dnsServer
+     * @param dnsServer DNS Server
      */
     public void addServer(String dnsServer) {
         getServers().addItem(dnsServer);

Modified: jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/PublisherSampler.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/PublisherSampler.java?rev=1783588&r1=1783587&r2=1783588&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/PublisherSampler.java (original)
+++ jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/PublisherSampler.java Sat Feb 18 20:29:26 2017
@@ -73,7 +73,10 @@ public class PublisherSampler extends Ba
     public static final Set<String> NO_ENCODING = Collections
             .unmodifiableSet(new LinkedHashSet<>(Arrays.asList(RAW_DATA, DEFAULT_ENCODING)));
 
-    /** Init available encoding using constants, then JVM standard ones **/
+    /** 
+     * Init available encoding using constants, then JVM standard ones
+     * @return Array of String containing supported encodings 
+     */
     public static String[] getSupportedEncodings() {
         // Only get JVM standard charsets
         return Stream.concat(NO_ENCODING.stream(),