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 2020/11/16 10:47:08 UTC

[jmeter] branch master updated (166800a -> ae3e3ea)

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

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


    from 166800a  Add BackendListener that sends "raw" results to InfluxDB (#544)
     new e3f7292  Add missing javadoc throws statements
     new ae3e3ea  The referenced classes in the javadoc are hidden in current Java versions

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java          | 4 ++++
 .../src/main/java/org/apache/jorphan/gui/JMeterUIDefaults.java        | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)


[jmeter] 01/02: Add missing javadoc throws statements

Posted by fs...@apache.org.
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 e3f729242817abe4deb7c8a6abc8c3f699ed8932
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Mon Nov 16 11:42:58 2020 +0100

    Add missing javadoc throws statements
---
 src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java b/src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java
index 7b88858..a741377 100644
--- a/src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java
+++ b/src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java
@@ -157,6 +157,10 @@ public final class GUIFactory {
      * @throws IllegalAccessException
      *             if access rights do not permit an instance of the GUI class
      *             to be created
+     * @throws NoSuchMethodException
+     *             when no constructor can be found on the given {@code guiClass}
+     * @throws InvocationTargetException
+     *             when the called constructor throws an exception
      */
     public static void registerGUI(String key, Class<?> guiClass, Class<?> testClass) throws InstantiationException,
             IllegalAccessException, NoSuchMethodException, InvocationTargetException {


[jmeter] 02/02: The referenced classes in the javadoc are hidden in current Java versions

Posted by fs...@apache.org.
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 ae3e3eaa061c2a52f52d2076ebb78b8a15f54013
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Mon Nov 16 11:43:48 2020 +0100

    The referenced classes in the javadoc are hidden in current Java versions
---
 .../src/main/java/org/apache/jorphan/gui/JMeterUIDefaults.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/jorphan/src/main/java/org/apache/jorphan/gui/JMeterUIDefaults.java b/src/jorphan/src/main/java/org/apache/jorphan/gui/JMeterUIDefaults.java
index ab7d771..c0bd0cb 100644
--- a/src/jorphan/src/main/java/org/apache/jorphan/gui/JMeterUIDefaults.java
+++ b/src/jorphan/src/main/java/org/apache/jorphan/gui/JMeterUIDefaults.java
@@ -274,9 +274,9 @@ public class JMeterUIDefaults {
     }
 
     /**
-     * Non UIResource wrapper for fonts which preserves the underlying {@link sun.font.Font2D}.
+     * Non UIResource wrapper for fonts which preserves the underlying {@code sun.font.Font2D}.
      * This way the font behaves the same way with respect to fallback fonts
-     * (i.e. if the {@link sun.font.Font2D} base is of type {@link sun.font.CompositeFont}).
+     * (i.e. if the {@code sun.font.Font2D} base is of type {@code sun.font.CompositeFont}).
      */
     private static class NonUIResourceFont extends Font {
         private NonUIResourceFont(Font font) {