-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove custom implementation and use org.apache.commons.lang.math.Num…
…berUtils.isNumber
- Loading branch information
Dušan Markovič
committed
Mar 3, 2020
1 parent
0488f0e
commit cf76b7d
Showing
1 changed file
with
3 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cf76b7d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding "import static org.apache.commons.lang.math.NumberUtils.isNumber;" in line 23 will cause the "java.lang.NoClassDefFoundError: org/apache/commons/lang/math/NumberUtils" exception, since Jmeter(v5.2.1) is using commons-lang3-3.9.jar instead of commons-lang-xxx.jar,
cf76b7d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have fixed this in version 2.6.11 (currently in SNAPSHOT). Using
isCreatable
instead of the deprecatedisNumber
method.