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 2021/03/13 08:23:03 UTC

[jmeter] branch master updated: Ignore warning about truncation, we don't need that much accuracy here

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


The following commit(s) were added to refs/heads/master by this push:
     new 66ae8f0  Ignore warning about truncation, we don't need that much accuracy here
66ae8f0 is described below

commit 66ae8f064089401d6b463cb1ef8a5f1422baaaef
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Sat Mar 13 09:21:55 2021 +0100

    Ignore warning about truncation, we don't need that much accuracy here
---
 src/core/src/main/java/org/apache/jmeter/config/gui/RowDetailDialog.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/core/src/main/java/org/apache/jmeter/config/gui/RowDetailDialog.java b/src/core/src/main/java/org/apache/jmeter/config/gui/RowDetailDialog.java
index 13799dc..2e73dab 100644
--- a/src/core/src/main/java/org/apache/jmeter/config/gui/RowDetailDialog.java
+++ b/src/core/src/main/java/org/apache/jmeter/config/gui/RowDetailDialog.java
@@ -129,6 +129,7 @@ public class RowDetailDialog extends JDialog implements ActionListener, Document
         return rootPane;
     }
 
+    @SuppressWarnings("MathRoundIntLong")
     private void init() { // WARNING: called from ctor so must not be overridden (i.e. must be private or final)
         this.getContentPane().setLayout(new BorderLayout(10,10));