Skip to content

Commit

Permalink
build(deps): bump com.github.curious-odd-man:rgxgen from 1.4 to 2.0
Browse files Browse the repository at this point in the history
Bumps [com.github.curious-odd-man:rgxgen](https://github.com/curious-odd-man/RgxGen) from 1.4 to 2.0.
- [Release notes](https://github.com/curious-odd-man/RgxGen/releases)
- [Commits](curious-odd-man/RgxGen@1.4...2.0)

---
updated-dependencies:
- dependency-name: com.github.curious-odd-man:rgxgen
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and lzaoral committed Mar 3, 2024
1 parent 34e49b6 commit 3570ffb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
implementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.23.0'

// for input generation
implementation 'com.github.curious-odd-man:rgxgen:1.4'
implementation 'com.github.curious-odd-man:rgxgen:2.0'

// applet installation
implementation 'org.apache.ant:ant:1.10.14'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jcprofiler/profiling/AbstractProfiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ protected void generateInputs(int size) {
// regex
if (args.dataRegex != null) {
log.info("Generating inputs from regular expression {}.", args.dataRegex);
final RgxGen rgxGen = new RgxGen(args.dataRegex);
final RgxGen rgxGen = RgxGen.parse(args.dataRegex);

for (int i = 0; i < size * 100; i++) {
final String input = rgxGen.generate(rdn);
Expand Down

0 comments on commit 3570ffb

Please sign in to comment.